mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: mit-scheme: Convert to the 'modify-phases' syntax.
* gnu/packages/scheme.scm (mit-scheme): Do it.
This commit is contained in:
parent
e5045f303a
commit
af00e63352
1 changed files with 26 additions and 31 deletions
|
@ -59,8 +59,8 @@ (define-public mit-scheme
|
|||
(arguments
|
||||
`(#:tests? #f ; no "check" target
|
||||
#:phases
|
||||
(alist-replace
|
||||
'unpack
|
||||
(modify-phases %standard-phases
|
||||
(replace 'unpack
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(and (zero? (system* "tar" "xzvf"
|
||||
(assoc-ref inputs "source")))
|
||||
|
@ -75,22 +75,17 @@ (define-public mit-scheme
|
|||
(find-files "src/lib" "^liarc-")
|
||||
(find-files "src/compiler" "^make\\.")))
|
||||
(chdir "src")
|
||||
#t)))
|
||||
(alist-replace
|
||||
'build
|
||||
#t))))
|
||||
(replace 'build
|
||||
(lambda* (#:key system outputs #:allow-other-keys)
|
||||
(let ((out (assoc-ref outputs "out")))
|
||||
(if (or (string-prefix? "x86_64" system)
|
||||
(string-prefix? "i686" system))
|
||||
(zero? (system* "make" "compile-microcode"))
|
||||
(zero? (system* "./etc/make-liarc.sh"
|
||||
(string-append "--prefix=" out))))))
|
||||
%standard-phases))))
|
||||
(string-append "--prefix=" out))))))))))
|
||||
(inputs
|
||||
`(;; TODO: Build doc when TeX Live is available.
|
||||
;; ("automake" ,automake)
|
||||
;; ("texlive-core" ,texlive-core)
|
||||
("texinfo" ,texinfo)
|
||||
`(("texinfo" ,texinfo)
|
||||
("m4" ,m4)
|
||||
("libx11" ,libx11)
|
||||
|
||||
|
|
Loading…
Reference in a new issue