gnu: celluloid: Do not install icon cache.
Fixes <https://issues.guix.gnu.org/58207>. * gnu/packages/video.scm (celluloid)[arguments]: Add phase disable-postinstall-script so postinstall-script does nothing. Build with glib-or-gtk meson option. [native-inputs]: Remove desktop-file-utils, gtk:bin. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
2408a10325
commit
b86867417f
1 changed files with 8 additions and 2 deletions
|
@ -785,12 +785,18 @@ old-fashioned output methods with powerful ascii-art renderer.")
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0ns9xh582c8kajw4v2x5ap5jfiba3gxywqc2klc0v6fc3id1gqii"))))
|
(base32 "0ns9xh582c8kajw4v2x5ap5jfiba3gxywqc2klc0v6fc3id1gqii"))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:glib-or-gtk? #t
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'disable-postinstall-script
|
||||||
|
(lambda _
|
||||||
|
(setenv "DESTDIR" "/"))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list
|
(list
|
||||||
desktop-file-utils ; for update-desktop-database
|
|
||||||
intltool
|
intltool
|
||||||
`(,glib "bin") ; for glib-compile-resources
|
`(,glib "bin") ; for glib-compile-resources
|
||||||
`(,gtk "bin") ; for gtk-update-icon-cache
|
|
||||||
pkg-config
|
pkg-config
|
||||||
python-wrapper)) ; for generate-authors.py
|
python-wrapper)) ; for generate-authors.py
|
||||||
(inputs
|
(inputs
|
||||||
|
|
Reference in a new issue