Archived
1
0
Fork 0

gnu: angband: Update to 4.2.4.

* gnu/packages/games.scm (angband): Update to 4.2.4.
[arguments]: Don't explicitly return #t from phases.
This commit is contained in:
Tobias Geerinckx-Rice 2022-05-29 02:00:01 +02:00
parent a01cc9f97f
commit 6c345a2465
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -3080,7 +3080,7 @@ that beneath its ruins lay buried an ancient evil.")
(define-public angband (define-public angband
(package (package
(name "angband") (name "angband")
(version "4.2.3") (version "4.2.4")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
@ -3089,7 +3089,7 @@ that beneath its ruins lay buried an ancient evil.")
(commit version))) (commit version)))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 "1psrdbf90mb6dhq0b9z18pz1csnshz1kvwg82dvwa99apqdw0la8")) (base32 "1x0qqsv7xa3figcl4v35sin64ffgz32652vk541d8qaq4qcc378n"))
(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
@ -3105,14 +3105,12 @@ that beneath its ruins lay buried an ancient evil.")
(substitute* "lib/Makefile" (substitute* "lib/Makefile"
;; And don't try to invoke makefiles in the directories we removed. ;; And don't try to invoke makefiles in the directories we removed.
(("gamedata customize help screens fonts tiles sounds icons user") (("gamedata customize help screens fonts tiles sounds icons user")
"gamedata customize help screens user")) "gamedata customize help screens user"))))))
#t))))
(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"))))
(native-inputs (native-inputs (list autoconf automake))
(list autoconf automake))
(inputs (list ncurses)) (inputs (list ncurses))
(home-page "https://rephial.org/") (home-page "https://rephial.org/")
(synopsis "Dungeon exploration roguelike") (synopsis "Dungeon exploration roguelike")