mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-11 14:26:13 +01:00
gnu: godot: Update to 3.2.
* gnu/packages/game-development.scm (godot): Update to 3.2. [source](snippet): Remove obsolete and unbundled (wslay) thirdparty files, and add new ones. [arguments](scons-flags): Disable the builtin wslay. [inputs]: Add wslay. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
cda9824585
commit
451e1075f0
1 changed files with 7 additions and 5 deletions
|
@ -90,6 +90,7 @@
|
||||||
#:use-module (gnu packages texinfo)
|
#:use-module (gnu packages texinfo)
|
||||||
#:use-module (gnu packages tls)
|
#:use-module (gnu packages tls)
|
||||||
#:use-module (gnu packages video)
|
#:use-module (gnu packages video)
|
||||||
|
#:use-module (gnu packages web)
|
||||||
#:use-module (gnu packages xdisorg)
|
#:use-module (gnu packages xdisorg)
|
||||||
#:use-module (gnu packages xiph)
|
#:use-module (gnu packages xiph)
|
||||||
#:use-module (gnu packages xml)
|
#:use-module (gnu packages xml)
|
||||||
|
@ -1505,7 +1506,7 @@ games.")
|
||||||
(define-public godot
|
(define-public godot
|
||||||
(package
|
(package
|
||||||
(name "godot")
|
(name "godot")
|
||||||
(version "3.1.2")
|
(version "3.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -1514,7 +1515,7 @@ games.")
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"12305wj2i4067jc50l8r0wmb7zjcna24fli8vb8kiaild0jrlip6"))
|
"0f15izjl4i2xlz1xj5pcslzl9gm3rmr3c21gh256ynpi2zhhkcdd"))
|
||||||
(modules '((guix build utils)
|
(modules '((guix build utils)
|
||||||
(ice-9 ftw)
|
(ice-9 ftw)
|
||||||
(srfi srfi-1)))
|
(srfi srfi-1)))
|
||||||
|
@ -1526,7 +1527,7 @@ games.")
|
||||||
(with-directory-excursion "thirdparty"
|
(with-directory-excursion "thirdparty"
|
||||||
(let* ((preserved-files
|
(let* ((preserved-files
|
||||||
'("README.md"
|
'("README.md"
|
||||||
"b2d_convexdecomp"
|
"assimp"
|
||||||
"certs"
|
"certs"
|
||||||
"cvtt"
|
"cvtt"
|
||||||
"enet"
|
"enet"
|
||||||
|
@ -1535,7 +1536,6 @@ games.")
|
||||||
"glad"
|
"glad"
|
||||||
"jpeg-compressor"
|
"jpeg-compressor"
|
||||||
"libsimplewebm"
|
"libsimplewebm"
|
||||||
"libwebsockets"
|
|
||||||
"miniupnpc"
|
"miniupnpc"
|
||||||
"minizip"
|
"minizip"
|
||||||
"misc"
|
"misc"
|
||||||
|
@ -1543,8 +1543,8 @@ games.")
|
||||||
"pvrtccompressor"
|
"pvrtccompressor"
|
||||||
"recastnavigation"
|
"recastnavigation"
|
||||||
"squish"
|
"squish"
|
||||||
"thekla_atlas"
|
|
||||||
"tinyexr"
|
"tinyexr"
|
||||||
|
"vhacd"
|
||||||
"xatlas")))
|
"xatlas")))
|
||||||
(for-each delete-file-recursively
|
(for-each delete-file-recursively
|
||||||
(lset-difference string=?
|
(lset-difference string=?
|
||||||
|
@ -1574,6 +1574,7 @@ games.")
|
||||||
"builtin_mbedtls=no"
|
"builtin_mbedtls=no"
|
||||||
"builtin_opus=no"
|
"builtin_opus=no"
|
||||||
"builtin_pcre2=no"
|
"builtin_pcre2=no"
|
||||||
|
"builtin_wslay=no"
|
||||||
"builtin_zlib=no"
|
"builtin_zlib=no"
|
||||||
"builtin_zstd=no")
|
"builtin_zstd=no")
|
||||||
#:tests? #f ; There are no tests
|
#:tests? #f ; There are no tests
|
||||||
|
@ -1640,6 +1641,7 @@ games.")
|
||||||
("opusfile" ,opusfile)
|
("opusfile" ,opusfile)
|
||||||
("pcre2" ,pcre2)
|
("pcre2" ,pcre2)
|
||||||
("pulseaudio" ,pulseaudio)
|
("pulseaudio" ,pulseaudio)
|
||||||
|
("wslay" ,wslay)
|
||||||
("zstd" ,zstd "lib")))
|
("zstd" ,zstd "lib")))
|
||||||
(home-page "https://godotengine.org/")
|
(home-page "https://godotengine.org/")
|
||||||
(synopsis "Advanced 2D and 3D game engine")
|
(synopsis "Advanced 2D and 3D game engine")
|
||||||
|
|
Loading…
Add table
Reference in a new issue