gnu: poppler: Use 'modify-phases'.

* gnu/packages/pdf.scm (poppler)[arguments]: Use 'modify-phases'.
master
Efraim Flashner 2016-08-15 11:43:57 +03:00
parent 5f8fc5e3bd
commit fb0c4d1ac2
No known key found for this signature in database
GPG Key ID: F4C1D3917EACEE93
1 changed files with 7 additions and 8 deletions

View File

@ -95,14 +95,13 @@
;; Saves 8 MiB of .a files.
"--disable-static")
#:phases
(alist-cons-before
'configure 'setenv
(lambda _
(setenv "CPATH"
(string-append (assoc-ref %build-inputs "openjpeg-1")
"/include/openjpeg-1.5"
":" (or (getenv "CPATH") ""))))
%standard-phases)))
(modify-phases %standard-phases
(add-before 'configure 'setenv
(lambda _
(setenv "CPATH"
(string-append (assoc-ref %build-inputs "openjpeg-1")
"/include/openjpeg-1.5"
":" (or (getenv "CPATH") ""))))))))
(synopsis "PDF rendering library")
(description
"Poppler is a PDF rendering library based on the xpdf-3.0 code base.")