mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: squeak-vm: Return #t from phases.
* gnu/packages/smalltalk.scm (squeak-vm)[arguments]: Substitute INVOKE for SYSTEM*. Return #t rather than undefined from phases.
This commit is contained in:
parent
5bad645159
commit
d9a7fab647
1 changed files with 6 additions and 4 deletions
|
@ -3,6 +3,7 @@
|
||||||
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2016 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
;;; Copyright © 2016 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
||||||
;;; Copyright © 2016 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2016 Ludovic Courtès <ludo@gnu.org>
|
||||||
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -132,14 +133,15 @@ such as ones for networking and GUI programming.")
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let ((out (assoc-ref outputs "out")))
|
(let ((out (assoc-ref outputs "out")))
|
||||||
(with-directory-excursion "bld"
|
(with-directory-excursion "bld"
|
||||||
(zero?
|
(invoke "../unix/cmake/configure"
|
||||||
(system* "../unix/cmake/configure"
|
|
||||||
(string-append "--prefix=" out)
|
(string-append "--prefix=" out)
|
||||||
"--without-quartz"))))))
|
"--without-quartz")
|
||||||
|
#t))))
|
||||||
(replace 'build
|
(replace 'build
|
||||||
(lambda _
|
(lambda _
|
||||||
(with-directory-excursion "bld"
|
(with-directory-excursion "bld"
|
||||||
(zero? (system* "make"))))))))
|
(invoke "make"))
|
||||||
|
#t)))))
|
||||||
(synopsis "Smalltalk programming language and environment")
|
(synopsis "Smalltalk programming language and environment")
|
||||||
(description "Squeak is a full-featured implementation of the Smalltalk
|
(description "Squeak is a full-featured implementation of the Smalltalk
|
||||||
programming language and environment based on (and largely compatible with)
|
programming language and environment based on (and largely compatible with)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue