gnu: angband: Update to 4.2.3.
* gnu/packages/games.scm (angband): Update to 4.2.3. [source]: Use GIT-FETCH and GIT-FILE-NAME. [arguments]: Remove custom 'bootstrap phase.
This commit is contained in:
parent
e2c4d8d6da
commit
dfbc2236ee
1 changed files with 8 additions and 14 deletions
|
@ -3067,15 +3067,16 @@ that beneath its ruins lay buried an ancient evil.")
|
||||||
(define-public angband
|
(define-public angband
|
||||||
(package
|
(package
|
||||||
(name "angband")
|
(name "angband")
|
||||||
(version "4.2.1")
|
(version "4.2.3")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://rephial.org/downloads/"
|
(uri (git-reference
|
||||||
(version-major+minor version)
|
(url "https://github.com/angband/angband")
|
||||||
"/angband-" version ".tar.gz"))
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "03qdavkj2ik02mqjxmlm5bn17ba3yxb1rirp8ghnxy3bsk4kbmxc"))
|
(base32 "1psrdbf90mb6dhq0b9z18pz1csnshz1kvwg82dvwa99apqdw0la8"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
;; So, some of the sounds/graphics/tilesets are under different
|
;; So, some of the sounds/graphics/tilesets are under different
|
||||||
|
@ -3096,14 +3097,7 @@ that beneath its ruins lay buried an ancient evil.")
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no check target
|
`(#:tests? #f ; no check target
|
||||||
#:configure-flags (list (string-append "--bindir=" %output "/bin"))
|
#:configure-flags (list (string-append "--bindir=" %output "/bin"))))
|
||||||
#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(replace 'bootstrap
|
|
||||||
(lambda _
|
|
||||||
(substitute* "acinclude.m4"
|
|
||||||
(("ncursesw5-config") "ncursesw6-config"))
|
|
||||||
(invoke "sh" "autogen.sh"))))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("autoconf" ,autoconf)
|
`(("autoconf" ,autoconf)
|
||||||
("automake" ,automake)))
|
("automake" ,automake)))
|
||||||
|
|
Reference in a new issue