mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 21:49:34 -05:00
gnu: higan: End phases with #t
* gnu/packages/emulators.scm (higan)[arguments]: End all phases with #t.
This commit is contained in:
parent
038497db18
commit
6d34d3f80b
1 changed files with 8 additions and 4 deletions
|
@ -344,15 +344,18 @@ (define-public higan
|
||||||
(delete 'configure)
|
(delete 'configure)
|
||||||
(add-before 'build 'chdir-to-higan
|
(add-before 'build 'chdir-to-higan
|
||||||
(lambda _
|
(lambda _
|
||||||
(chdir "higan")))
|
(chdir "higan")
|
||||||
|
#t))
|
||||||
(add-before 'install 'create-/share/applications
|
(add-before 'install 'create-/share/applications
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let ((out (assoc-ref outputs "out")))
|
(let ((out (assoc-ref outputs "out")))
|
||||||
;; It seems the author forgot to do this in the Makefile.
|
;; It seems the author forgot to do this in the Makefile.
|
||||||
(mkdir-p (string-append out "/share/applications")))))
|
(mkdir-p (string-append out "/share/applications"))
|
||||||
|
#t)))
|
||||||
(add-after 'install 'chdir-to-icarus
|
(add-after 'install 'chdir-to-icarus
|
||||||
(lambda _
|
(lambda _
|
||||||
(chdir "../icarus")))
|
(chdir "../icarus")
|
||||||
|
#t))
|
||||||
(add-after 'chdir-to-icarus 'build-icarus build-phase)
|
(add-after 'chdir-to-icarus 'build-icarus build-phase)
|
||||||
(add-after 'build-icarus 'install-icarus install-phase)
|
(add-after 'build-icarus 'install-icarus install-phase)
|
||||||
(add-after 'install-icarus 'wrap-higan-executable
|
(add-after 'install-icarus 'wrap-higan-executable
|
||||||
|
@ -383,7 +386,8 @@ (define-public higan
|
||||||
(chmod higan #o555)
|
(chmod higan #o555)
|
||||||
;; Second, make sure higan will find icarus in PATH.
|
;; Second, make sure higan will find icarus in PATH.
|
||||||
(wrap-program higan
|
(wrap-program higan
|
||||||
`("PATH" ":" prefix (,bin))))))))
|
`("PATH" ":" prefix (,bin)))
|
||||||
|
#t)))))
|
||||||
#:make-flags
|
#:make-flags
|
||||||
(list "compiler=g++"
|
(list "compiler=g++"
|
||||||
(string-append "prefix=" (assoc-ref %outputs "out")))
|
(string-append "prefix=" (assoc-ref %outputs "out")))
|
||||||
|
|
Loading…
Reference in a new issue