me
/
guix
Archived
1
0
Fork 0

gnu: libgsf: Enable missing features.

* gnu/packages/gnome.scm (libgsf) [arguments]<#:configure-flag>[--enable-introspection]: New flag.
[--with-gir-dir=]: New flag.
[--with-typelib-dir=]: New flag.
[--with-zlib]: New flag.
[--with-bz2]: New flag.
[native-inputs]: Add gobject-introspection.

Signed-off-by: Léo Le Bouter <lle-bout@zaclys.net>
master
Raghav Gururajan 2021-03-11 12:08:10 -05:00
parent d61767ae57
commit 3094309b9d
No known key found for this signature in database
GPG Key ID: 45A8B1E86BCD10A6
1 changed files with 19 additions and 1 deletions

View File

@ -3277,9 +3277,27 @@ XML/CSS rendering engine.")
(build-system glib-or-gtk-build-system)
(outputs '("out" "bin"))
(arguments
'(#:configure-flags '("--disable-static")))
`(#:configure-flags
(list
"--disable-static"
"--enable-introspection"
(string-append "--with-gir-dir="
(assoc-ref %outputs "out")
"/share/gir-"
,(version-major
(package-version gobject-introspection))
".0")
(string-append "--with-typelib-dir="
(assoc-ref %outputs "out")
"/lib/girepository-"
,(version-major
(package-version gobject-introspection))
".0")
"--with-zlib"
"--with-bz2")))
(native-inputs
`(("gettext" ,gettext-minimal)
("gobject-introspection" ,gobject-introspection)
("perl" ,perl)
("perl-xml-parser" ,perl-xml-parser)
("pkg-config" ,pkg-config)))