mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: cups-filters: Update to 1.11.5.
* gnu/packages/cups.scm (cups-filters): Update to 1.11.5. [arguments]: Add ‘--with-gs-path=’ to #:configure-flags. [inputs]: Add mupdf.
This commit is contained in:
parent
0df955401f
commit
4ab016e0ab
1 changed files with 8 additions and 4 deletions
|
@ -51,15 +51,15 @@ (define ghostscript/cups
|
||||||
(define-public cups-filters
|
(define-public cups-filters
|
||||||
(package
|
(package
|
||||||
(name "cups-filters")
|
(name "cups-filters")
|
||||||
(version "1.11.2")
|
(version "1.11.5")
|
||||||
(source (origin
|
(source(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri
|
(uri
|
||||||
(string-append "http://openprinting.org/download/cups-filters/"
|
(string-append "http://openprinting.org/download/cups-filters/"
|
||||||
"cups-filters-" version ".tar.xz"))
|
"cups-filters-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0x864p794m10kn157n6iv1q9nix5f7x82a8xwjf8hlvri4458j2b"))
|
"1hcp1cfx1a71aa6fyayajjh7vw1ia7zya6981gz73vsy2pdb23qf"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
;; install backends, banners and filters to cups-filters output
|
;; install backends, banners and filters to cups-filters output
|
||||||
|
@ -85,7 +85,10 @@ (define-public cups-filters
|
||||||
(arguments
|
(arguments
|
||||||
`(#:make-flags (list (string-append "PREFIX=" %output))
|
`(#:make-flags (list (string-append "PREFIX=" %output))
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
`(,(string-append "--with-test-font-path="
|
`(,(string-append "--with-gs-path="
|
||||||
|
(assoc-ref %build-inputs "ghostscript")
|
||||||
|
"/bin")
|
||||||
|
,(string-append "--with-test-font-path="
|
||||||
(assoc-ref %build-inputs "font-dejavu")
|
(assoc-ref %build-inputs "font-dejavu")
|
||||||
"/share/fonts/truetype/DejaVuSans.ttf")
|
"/share/fonts/truetype/DejaVuSans.ttf")
|
||||||
,(string-append "--with-gs-path="
|
,(string-append "--with-gs-path="
|
||||||
|
@ -108,6 +111,7 @@ (define-public cups-filters
|
||||||
("libjpeg-8" ,libjpeg-8)
|
("libjpeg-8" ,libjpeg-8)
|
||||||
("libpng" ,libpng)
|
("libpng" ,libpng)
|
||||||
("libtiff" ,libtiff)
|
("libtiff" ,libtiff)
|
||||||
|
("mupdf" ,mupdf)
|
||||||
("glib" ,glib)
|
("glib" ,glib)
|
||||||
("qpdf" ,qpdf)
|
("qpdf" ,qpdf)
|
||||||
("poppler" ,poppler)
|
("poppler" ,poppler)
|
||||||
|
|
Loading…
Reference in a new issue