3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: astromenace: Improve package style.

* gnu/packages/games.scm (astromenace)[arguments]: Use G-expressions.  Remove
trailing #T from phases.
This commit is contained in:
Nicolas Goaziou 2022-12-05 23:02:35 +01:00
parent c84820618a
commit 6f3f952e20
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -457,30 +457,27 @@ physics settings to tweak as well.")
(base32 "0vw94issjzz6rji0ssqv5yrll513dvj7m0d33q8lbih1gdh4alal"))))
(build-system cmake-build-system)
(arguments
`(#:tests? #f ;no test
#:configure-flags (list (string-append "-DDATADIR="
(assoc-ref %outputs "out")
"/share/astromenace"))
#:phases
(modify-phases %standard-phases
(replace 'install
;; Upstream provides no install phase.
(lambda* (#:key inputs outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
(bin (string-append out "/bin"))
(share (string-append out "/share"))
(apps (string-append share "/applications"))
(data (string-append share "/astromenace"))
(icons (string-append share "/icons/hicolor/64x64/apps")))
(install-file "astromenace" bin)
(install-file "gamedata.vfs" data)
(let ((source (assoc-ref inputs "source")))
(with-directory-excursion (string-append source "/share")
(install-file "astromenace.desktop" apps)
(mkdir-p icons)
(copy-file "astromenace_64.png"
(string-append icons "/astromenace.png")))))
#t)))))
(list
#:tests? #f ;no tests
#:configure-flags
#~(list (string-append "-DDATADIR=" #$output "/share/astromenace"))
#:phases
#~(modify-phases %standard-phases
(replace 'install
;; Upstream provides no install phase.
(lambda _
(let* ((bin (string-append #$output "/bin"))
(share (string-append #$output "/share"))
(apps (string-append share "/applications"))
(data (string-append share "/astromenace"))
(icons (string-append share "/icons/hicolor/64x64/apps")))
(install-file "astromenace" bin)
(install-file "gamedata.vfs" data)
(with-directory-excursion (string-append #$source "/share")
(install-file "astromenace.desktop" apps)
(mkdir-p icons)
(copy-file "astromenace_64.png"
(string-append icons "/astromenace.png")))))))))
(inputs
(list freealut
freetype