Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
luadebug committed Mar 5, 2025
1 parent 9303b9a commit ae51e1d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/l/libxkbcommon/xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ package("libxkbcommon")
end

if package:config("wayland") then
package:add("deps", "wayland")
package:add("deps", "wayland", "wayland-protocols")
if package:is_plat("linux") then
package:add("extsources", "pacman::libxkbcommon")
end
Expand Down
4 changes: 2 additions & 2 deletions packages/u/ultralight/xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,15 @@ package("ultralight")
add_configs("shared", {description = "Build shared library.", default = true, type = "boolean", readonly = true})

on_check(function (package)
if is_plat("macosx", "linux") and is_arch("arm64") then
if package:is_plat("macosx", "linux") and package:is_arch("arm64") then
if package:version():eq("1.3.0") then
assert(false, "package(ultralight 1.3.0): Unsupported version on macosx/linux|arm64")
end
end
end)

on_load(function (package)
if is_plat("linux") then
if package:is_plat("linux") then
package:add("deps", "gtk3")
end
end)
Expand Down

0 comments on commit ae51e1d

Please sign in to comment.