Browse Source

Add linux pacman add_extsources for libxkbcommon (#886)

Arthapz 3 years ago
parent
commit
40431467d0
1 changed files with 2 additions and 0 deletions
  1. 2 0
      packages/l/libxkbcommon/xmake.lua

+ 2 - 0
packages/l/libxkbcommon/xmake.lua

@@ -16,8 +16,10 @@ package("libxkbcommon")
     on_load("linux", function (package)
         if package:config("x11") then
             package:add("deps", "libxcb", "xcb-proto", "libxml2")
+            package:add("extsources", "pacman::libxkbcommon-x11")
         else
             package:add("deps", "wayland")
+            package:add("extsources", "pacman::libxkbcommon")
         end
     end)