gnu: psutils: Use 'modify-phases'.
* gnu/packages/ghostscript.scm (psutils)[arguments]: Use 'modify-phases' syntax.
This commit is contained in:
parent
8c88e0ba8c
commit
530d9e1555
|
@ -100,8 +100,8 @@ paper size.")
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; none provided
|
`(#:tests? #f ; none provided
|
||||||
#:phases
|
#:phases
|
||||||
(alist-replace
|
(modify-phases %standard-phases
|
||||||
'configure
|
(replace 'configure
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys #:rest args)
|
(lambda* (#:key inputs outputs #:allow-other-keys #:rest args)
|
||||||
(let ((perl (assoc-ref inputs "perl"))
|
(let ((perl (assoc-ref inputs "perl"))
|
||||||
(out (assoc-ref outputs "out")))
|
(out (assoc-ref outputs "out")))
|
||||||
|
@ -115,8 +115,8 @@ paper size.")
|
||||||
(("-mkdir") "mkdir -p"))
|
(("-mkdir") "mkdir -p"))
|
||||||
;; drop installation of non-free files
|
;; drop installation of non-free files
|
||||||
(substitute* "Makefile"
|
(substitute* "Makefile"
|
||||||
((" install.include") ""))))
|
((" install.include") "")))
|
||||||
%standard-phases)))
|
#t)))))
|
||||||
(synopsis "Collection of utilities for manipulating PostScript documents")
|
(synopsis "Collection of utilities for manipulating PostScript documents")
|
||||||
(description
|
(description
|
||||||
"PSUtils is a collection of utilities for manipulating PostScript
|
"PSUtils is a collection of utilities for manipulating PostScript
|
||||||
|
|
Loading…
Reference in New Issue