From 40ae1704c11b4c7fd4a1971e8517d592726fd64a Mon Sep 17 00:00:00 2001 From: Arthapz Date: Thu, 13 Jan 2022 00:23:27 +0100 Subject: [PATCH] Add linux pacman add_extsources for gobject-introspection (#879) --- packages/g/gobject-introspection/xmake.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/g/gobject-introspection/xmake.lua b/packages/g/gobject-introspection/xmake.lua index 369227abf..d5cbdd161 100644 --- a/packages/g/gobject-introspection/xmake.lua +++ b/packages/g/gobject-introspection/xmake.lua @@ -12,7 +12,7 @@ package("gobject-introspection") add_configs("shared", {description = "Build shared library.", default = true, type = "boolean", readonly = true}) if is_plat("linux") then - add_extsources("apt::libgirepository1.0-dev") + add_extsources("apt::libgirepository1.0-dev", "pacman::gobject-introspection-runtime") end add_deps("meson", "ninja", "pkg-config", "python 3.x", "flex", "bison")