mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: gnome-dictionary: Fix install phase.
* gnu/packages/gnome.scm (gnome-dictionary)[arguments]: Add phase to prevent post-install script from running.
This commit is contained in:
parent
873325b030
commit
2776b5d5bf
1 changed files with 10 additions and 1 deletions
|
@ -6322,7 +6322,16 @@ (define-public gnome-dictionary
|
|||
(base32
|
||||
"007k2bq8iplg4psdpz074r5d4zxvn4s95qym4rw9hs6giljbrf0n"))))
|
||||
(build-system meson-build-system)
|
||||
(arguments '(#:glib-or-gtk? #t))
|
||||
(arguments '(#:glib-or-gtk? #t
|
||||
#:phases (modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch-install-script
|
||||
(lambda _
|
||||
;; This script attempts to compile glib schemas
|
||||
;; and create an empty MIME database. We do
|
||||
;; that elsewhere, so prevent it from running.
|
||||
(substitute* "build-aux/post-install.sh"
|
||||
(("\\[ -z \"\\$DESTDIR\" \\]") "false"))
|
||||
#t)))))
|
||||
(native-inputs
|
||||
`(("glib:bin" ,glib "bin")
|
||||
("gobject-introspection" ,gobject-introspection)
|
||||
|
|
Loading…
Reference in a new issue