mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: ijs: Use modify-phases syntax.
* gnu/packages/ghostscript.scm (ijs)[arguments]: Use modify-phases.
This commit is contained in:
parent
d6158fe70d
commit
1c09eb9948
1 changed files with 17 additions and 18 deletions
|
@ -5,6 +5,7 @@
|
|||
;;; Copyright © 2013, 2015, 2016 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2017 Alex Vong <alexvong1995@gmail.com>
|
||||
;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2017 Leo Famulari <leo@famulari.name>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -246,8 +247,8 @@ (define-public ijs
|
|||
("autoconf" ,autoconf)))
|
||||
(arguments
|
||||
`(#:phases
|
||||
(alist-cons-after
|
||||
'unpack 'autogen
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'autogen
|
||||
(lambda _
|
||||
;; need to regenerate macros
|
||||
(system* "autoreconf" "-if")
|
||||
|
@ -255,15 +256,13 @@ (define-public ijs
|
|||
(substitute* "autogen.sh"
|
||||
(("^.*\\$srcdir/configure.*") ""))
|
||||
(system* "bash" "autogen.sh")
|
||||
|
||||
;; create configure script in ./ijs/
|
||||
(chdir "ijs")
|
||||
;; do not run configure
|
||||
(substitute* "autogen.sh"
|
||||
(("^.*\\$srcdir/configure.*") "")
|
||||
(("^ + && echo Now type.*$") ""))
|
||||
(zero? (system* "bash" "autogen.sh")))
|
||||
%standard-phases)))
|
||||
(zero? (system* "bash" "autogen.sh")))))))
|
||||
(synopsis "IJS driver framework for inkjet and other raster devices")
|
||||
(description
|
||||
"IJS is a protocol for transmission of raster page images. This package
|
||||
|
|
Loading…
Reference in a new issue