guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/05: gnu: Add zathura postscript plugin.


From: Paul
Subject: 04/05: gnu: Add zathura postscript plugin.
Date: Thu, 05 Mar 2015 09:30:03 +0000

toothbrush pushed a commit to branch master
in repository guix.

commit 721a4f7d570222cd8c0dc583fab7ebcbf4f9f18a
Author: Paul van der Walt <address@hidden>
Date:   Mon Mar 2 00:35:51 2015 +0100

    gnu: Add zathura postscript plugin.
    
    * gnu/packages/pdf.scm (zathura-ps): New variable.
---
 gnu/packages/pdf.scm |   31 +++++++++++++++++++++++++++++++
 1 files changed, 31 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/pdf.scm b/gnu/packages/pdf.scm
index eb0917c..ffca09a 100644
--- a/gnu/packages/pdf.scm
+++ b/gnu/packages/pdf.scm
@@ -148,6 +148,37 @@
    (license license:gpl3) ; or gpl2, but not gpl2+
    (home-page "http://www.foolabs.com/xpdf/";)))
 
+(define-public zathura-ps
+  (package
+    (name "zathura-ps")
+    (version "0.2.2")
+    (source (origin
+              (method url-fetch)
+              (uri
+               (string-append 
"https://pwmt.org/projects/zathura-ps/download/zathura-ps-";
+                              version ".tar.gz"))
+              (sha256
+               (base32
+                "1a6ps5v1wk18qvslbkjln6w8wfzzr6fi13ls96vbdc03vdhn4m76"))))
+    (native-inputs `(("pkg-config" ,pkg-config)))
+    (propagated-inputs `(("girara" ,girara)))
+    (inputs `(("libspectre" ,libspectre)
+              ("gtk+" ,gtk+)
+              ("zathura" ,zathura)))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:make-flags
+       `(,(string-append "DESTDIR=" (assoc-ref %outputs "out"))
+          "PLUGINDIR=/lib/zathura" "CC=gcc")
+       #:tests? #f ; Package does not contain tests.
+       #:phases
+       (alist-delete 'configure %standard-phases)))
+    (home-page "https://pwmt.org/projects/zathura-ps/";)
+    (synopsis "PS support for zathura (libspectre backend)")
+    (description "The zathura-ps plugin adds PS support to zathura
+using libspectre.")
+    (license license:zlib)))
+
 (define-public zathura-djvu
   (package
     (name "zathura-djvu")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]