~ruther/guix-local

b1982b80ca8d230d43c514803df726fb0a36a227 — Mark H Weaver 10 years ago 734976b
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.
1 files changed, 12 insertions(+), 12 deletions(-)

M gnu/packages/pdf.scm
M gnu/packages/pdf.scm => gnu/packages/pdf.scm +12 -12
@@ 171,9 171,9 @@
              ("zathura" ,zathura)))
    (build-system gnu-build-system)
    (arguments
     `(#:make-flags
       `(,(string-append "DESTDIR=" (assoc-ref %outputs "out"))
          "PLUGINDIR=/lib/zathura" "CC=gcc")
     `(#:make-flags (list (string-append "PREFIX=" %output)
                          (string-append "PLUGINDIR=" %output "/lib/zathura")
                          "CC=gcc")
       #:tests? #f ; Package does not contain tests.
       #:phases
       (alist-delete 'configure %standard-phases)))


@@ 202,9 202,9 @@ using libarchive.")
              ("zathura" ,zathura)))
    (build-system gnu-build-system)
    (arguments
     `(#:make-flags
       `(,(string-append "DESTDIR=" (assoc-ref %outputs "out"))
          "PLUGINDIR=/lib/zathura" "CC=gcc")
     `(#:make-flags (list (string-append "PREFIX=" %output)
                          (string-append "PLUGINDIR=" %output "/lib/zathura")
                          "CC=gcc")
       #:tests? #f ; Package does not contain tests.
       #:phases
       (alist-delete 'configure %standard-phases)))


@@ 234,9 234,9 @@ using libspectre.")
       ("zathura" ,zathura)))
    (build-system gnu-build-system)
    (arguments
     `(#:make-flags
       `(,(string-append "DESTDIR=" (assoc-ref %outputs "out"))
          "PLUGINDIR=/lib/zathura" "CC=gcc")
     `(#:make-flags (list (string-append "PREFIX=" %output)
                          (string-append "PLUGINDIR=" %output "/lib/zathura")
                          "CC=gcc")
       #:tests? #f ; Package does not contain tests.
       #:phases
       (alist-delete 'configure %standard-phases)))


@@ 267,9 267,9 @@ using the DjVuLibre library.")
       ("cairo" ,cairo)))
    (build-system gnu-build-system)
    (arguments
     `(#:make-flags
       `(,(string-append "DESTDIR=" (assoc-ref %outputs "out"))
          "PLUGINDIR=/lib/zathura" "CC=gcc")
     `(#:make-flags (list (string-append "PREFIX=" %output)
                          (string-append "PLUGINDIR=" %output "/lib/zathura")
                          "CC=gcc")
       #:tests? #f ; Package does not include tests.
       #:phases
       (alist-delete 'configure %standard-phases)))