gnu: endless-sky: Update to 0.10.0.

* gnu/packages/games.scm (endless-sky): Update to 0.10.0.
[build-system]: Change to CMAKE-BUILD-SYSTEM.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
Zheng Junjie 2023-03-30 17:36:39 +08:00 committed by Maxim Cournoyer
parent 5ef775d618
commit 8a55f382db
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -75,6 +75,7 @@
;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2022 Hendursaga <hendursaga@aol.com> ;;; Copyright © 2022 Hendursaga <hendursaga@aol.com>
;;; Copyright © 2022 Parnikkapore <poomklao@yahoo.com> ;;; Copyright © 2022 Parnikkapore <poomklao@yahoo.com>
;;; Copyright © 2023 Zheng Junjie <873216071@qq.com>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -8256,7 +8257,7 @@ (define-public quadrapassel
(define-public endless-sky (define-public endless-sky
(package (package
(name "endless-sky") (name "endless-sky")
(version "0.9.16.1") (version "0.10.0")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
@ -8265,10 +8266,13 @@ (define-public 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 "0cb2g1cb0mk6x9gq2x7n10rxlfhsq8wnssk068j6h80al3hhybly")))) (base32 "1zbizmigxdwpi3m7sxv9hhf3aa18kbhsfrp48zy3iw2v64pw9l3r"))))
(build-system scons-build-system) (build-system cmake-build-system)
(arguments (arguments
(list #:scons-flags #~(list (string-append "PREFIX=" #$output)) (list #:configure-flags #~(list "-DES_USE_VCPKG=0"
"-DES_USE_SYSTEM_LIBRARIES=1")
#:make-flags #~(list (string-append "PREFIX=" #$output))
#:build-type "Release"
#:phases #:phases
#~(modify-phases %standard-phases #~(modify-phases %standard-phases
(add-after 'unpack 'fix-paths (add-after 'unpack 'fix-paths
@ -8277,11 +8281,8 @@ (define-public endless-sky
(substitute* "source/Files.cpp" (substitute* "source/Files.cpp"
(("/usr/local") #$output)) (("/usr/local") #$output))
;; Install game binary into %out/bin. ;; Install game binary into %out/bin.
(substitute* "SConstruct" (substitute* "CMakeLists.txt"
(("games\"") "bin\"")))) (("games\\)") "bin)")))))))
(add-before 'build 'use-gcc-ar
;; Use gcc-ar to support LTO.
(lambda _ (setenv "AR" "gcc-ar"))))))
(inputs (inputs
(list glew (list glew
libjpeg-turbo libjpeg-turbo