mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-12 09:56:14 -05:00
gnu: gnome-mime-data: Do not use the bundled intltool.
* gnu/packages/gnome.scm (gnome-mime-data)[arguments]: New field.
This commit is contained in:
parent
23212bf9e6
commit
3e6add96c5
1 changed files with 11 additions and 0 deletions
|
@ -1288,6 +1288,17 @@ (define-public gnome-mime-data
|
|||
(native-inputs
|
||||
`(("perl" ,perl)
|
||||
("intltool" ,intltool)))
|
||||
(arguments
|
||||
'(#:phases (modify-phases %standard-phases
|
||||
(add-after 'configure 'use-our-intltool
|
||||
(lambda _
|
||||
;; Do not use the bundled intltool commands, which lack
|
||||
;; the "dotless @INC" fixes of our 'intltool' package.
|
||||
(substitute* (find-files "." "^Makefile$")
|
||||
(("^INTLTOOL_(EXTRACT|UPDATE|MERGE) = .*$" _ tool)
|
||||
(string-append "INTLTOOL_" tool " = intltool-"
|
||||
(string-downcase tool) "\n")))
|
||||
#t)))))
|
||||
(home-page "http://www.gnome.org")
|
||||
(synopsis "Base MIME and Application database for GNOME")
|
||||
(description "GNOME Mime Data is a module which contains the base MIME
|
||||
|
|
Loading…
Reference in a new issue