gnu: openrct2: Don't use unstable tarball.
* gnu/packages/games.scm (openrct2)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
071782762a
commit
2e5a0690bb
1 changed files with 6 additions and 5 deletions
|
@ -2693,12 +2693,13 @@ Transport Tycoon Deluxe.")
|
||||||
(version "0.2.2")
|
(version "0.2.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/OpenRCT2/OpenRCT2/archive/v"
|
(uri (git-reference
|
||||||
version ".tar.gz"))
|
(url "https://github.com/OpenRCT2/OpenRCT2.git")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0yxaphgfq85piaacnnfy6lrvmnqmfj1891rxlkl5ndngq0zh0ysb"))
|
(base32 "1bfqmb6cbmsjcvj77vppy5lw1m4lkvxd1w3f218ah4788xnkysq2"))))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))))
|
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags (list "-DDOWNLOAD_OBJECTS=OFF"
|
`(#:configure-flags (list "-DDOWNLOAD_OBJECTS=OFF"
|
||||||
|
|
Reference in a new issue