mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: zathura-{cb,ps,djvu,pdf-poppler}: Fix installation of desktop files.
Based on a patch by Alex Kost <alezost@gmail.com>. * gnu/packages/pdf.scm (zathura-cb, zathura-ps, zathura-djvu) (zathura-pdf-poppler)[arguments]: In make-flags, set PREFIX instead of DESTDIR and adjust PLUGINDIR accordingly.
This commit is contained in:
parent
734976b681
commit
b1982b80ca
1 changed files with 12 additions and 12 deletions
|
@ -171,9 +171,9 @@ (define-public zathura-cb
|
||||||
("zathura" ,zathura)))
|
("zathura" ,zathura)))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:make-flags
|
`(#:make-flags (list (string-append "PREFIX=" %output)
|
||||||
`(,(string-append "DESTDIR=" (assoc-ref %outputs "out"))
|
(string-append "PLUGINDIR=" %output "/lib/zathura")
|
||||||
"PLUGINDIR=/lib/zathura" "CC=gcc")
|
"CC=gcc")
|
||||||
#:tests? #f ; Package does not contain tests.
|
#:tests? #f ; Package does not contain tests.
|
||||||
#:phases
|
#:phases
|
||||||
(alist-delete 'configure %standard-phases)))
|
(alist-delete 'configure %standard-phases)))
|
||||||
|
@ -202,9 +202,9 @@ (define-public zathura-ps
|
||||||
("zathura" ,zathura)))
|
("zathura" ,zathura)))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:make-flags
|
`(#:make-flags (list (string-append "PREFIX=" %output)
|
||||||
`(,(string-append "DESTDIR=" (assoc-ref %outputs "out"))
|
(string-append "PLUGINDIR=" %output "/lib/zathura")
|
||||||
"PLUGINDIR=/lib/zathura" "CC=gcc")
|
"CC=gcc")
|
||||||
#:tests? #f ; Package does not contain tests.
|
#:tests? #f ; Package does not contain tests.
|
||||||
#:phases
|
#:phases
|
||||||
(alist-delete 'configure %standard-phases)))
|
(alist-delete 'configure %standard-phases)))
|
||||||
|
@ -234,9 +234,9 @@ (define-public zathura-djvu
|
||||||
("zathura" ,zathura)))
|
("zathura" ,zathura)))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:make-flags
|
`(#:make-flags (list (string-append "PREFIX=" %output)
|
||||||
`(,(string-append "DESTDIR=" (assoc-ref %outputs "out"))
|
(string-append "PLUGINDIR=" %output "/lib/zathura")
|
||||||
"PLUGINDIR=/lib/zathura" "CC=gcc")
|
"CC=gcc")
|
||||||
#:tests? #f ; Package does not contain tests.
|
#:tests? #f ; Package does not contain tests.
|
||||||
#:phases
|
#:phases
|
||||||
(alist-delete 'configure %standard-phases)))
|
(alist-delete 'configure %standard-phases)))
|
||||||
|
@ -267,9 +267,9 @@ (define-public zathura-pdf-poppler
|
||||||
("cairo" ,cairo)))
|
("cairo" ,cairo)))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:make-flags
|
`(#:make-flags (list (string-append "PREFIX=" %output)
|
||||||
`(,(string-append "DESTDIR=" (assoc-ref %outputs "out"))
|
(string-append "PLUGINDIR=" %output "/lib/zathura")
|
||||||
"PLUGINDIR=/lib/zathura" "CC=gcc")
|
"CC=gcc")
|
||||||
#:tests? #f ; Package does not include tests.
|
#:tests? #f ; Package does not include tests.
|
||||||
#:phases
|
#:phases
|
||||||
(alist-delete 'configure %standard-phases)))
|
(alist-delete 'configure %standard-phases)))
|
||||||
|
|
Loading…
Reference in a new issue