Archived
1
0
Fork 0

gnu: endless-sky: Remove #t at the end of phase.

* gnu/packages/games.scm (endless-sky): Remove #t at the end of phase.  Fix
indentation.
This commit is contained in:
Nicolas Goaziou 2021-08-05 09:03:36 +02:00
parent 6f248b947f
commit 12aedf0015
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -8353,14 +8353,14 @@ your score gets higher, you level up and the blocks fall faster.")
(name "endless-sky") (name "endless-sky")
(version "0.9.14") (version "0.9.14")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://github.com/endless-sky/endless-sky") (url "https://github.com/endless-sky/endless-sky")
(commit (string-append "v" version)))) (commit (string-append "v" version))))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 "12iganf8dxiyrjznnabsarxjsr0h717j3k4mz15p0k67wxyahhmf")))) (base32 "12iganf8dxiyrjznnabsarxjsr0h717j3k4mz15p0k67wxyahhmf"))))
(build-system scons-build-system) (build-system scons-build-system)
(arguments (arguments
`(#:scons ,scons-python2 `(#:scons ,scons-python2
@ -8374,8 +8374,7 @@ your score gets higher, you level up and the blocks fall faster.")
(("/usr/local") (assoc-ref outputs "out"))) (("/usr/local") (assoc-ref outputs "out")))
;; Install game binary into %out/bin. ;; Install game binary into %out/bin.
(substitute* "SConstruct" (substitute* "SConstruct"
(("games\"") "bin\"")) (("games\"") "bin\""))))
#t))
(add-before 'build 'use-gcc-ar (add-before 'build 'use-gcc-ar
;; Use gcc-ar to support LTO. ;; Use gcc-ar to support LTO.
(lambda _ (setenv "AR" "gcc-ar")))))) (lambda _ (setenv "AR" "gcc-ar"))))))