mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: ghostscript: Build and install shared library and header files.
* gnu/packages/ghostscript (ghostscript): Extend build and install phases.
This commit is contained in:
parent
67668155c5
commit
2b902c3c46
1 changed files with 13 additions and 1 deletions
|
@ -150,7 +150,19 @@ (define-public ghostscript
|
|||
(("/bin/sh") (which "bash")))
|
||||
(substitute* "base/unixhead.mak"
|
||||
(("/bin/sh") (which "bash")))))
|
||||
%standard-phases)))
|
||||
(alist-replace
|
||||
'build
|
||||
(lambda* (#:key #:allow-other-keys #:rest args)
|
||||
(let ((build (assoc-ref %standard-phases 'build)))
|
||||
(apply build args)
|
||||
(system* "make" "so")))
|
||||
(alist-replace
|
||||
'install
|
||||
(lambda* (#:key #:allow-other-keys #:rest args)
|
||||
(let ((install (assoc-ref %standard-phases 'install)))
|
||||
(apply install args)
|
||||
(system* "make" "install-so")))
|
||||
%standard-phases)))))
|
||||
(synopsis "GNU Ghostscript, an interpreter for the PostScript language and for PDF")
|
||||
(description
|
||||
"GNU Ghostscript is an interpreter for PostScript and Portable Document
|
||||
|
|
Loading…
Reference in a new issue