[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/09: gnu: openttd-openmsx: Use new package style.
From: |
guix-commits |
Subject: |
07/09: gnu: openttd-openmsx: Use new package style. |
Date: |
Tue, 19 Apr 2022 14:37:39 -0400 (EDT) |
lilyp pushed a commit to branch master
in repository guix.
commit 5376f3d058b91469d1f6daa56e4ffcef42ae34e4
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
AuthorDate: Sat Apr 16 00:51:49 2022 +0200
gnu: openttd-openmsx: Use new package style.
* gnu/packages/games.scm (openttd-openmsx)[arguments]: Convert to list of
G-Expressions.
[native-inputs]: Drop labels.
---
gnu/packages/games.scm | 41 +++++++++++++++++++++--------------------
1 file changed, 21 insertions(+), 20 deletions(-)
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index f5555b519a..5cb79375e0 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -4413,27 +4413,28 @@ the original Transport Tycoon Deluxe.")
"0h583d8fxy78kc3jvpp78r76a48qhxrhm4q7jbnj74aw0kwrcl8g"))))
(build-system gnu-build-system)
(native-inputs
- `(("grfcodec" ,grfcodec)
- ; Scripts are Python3 compatible, but call the interpreter as
- ; python instead of python3.
- ("python" ,python-wrapper)
- ("tar" ,tar)))
+ (list grfcodec
+ ;; Scripts are Python3 compatible, but call the interpreter as
+ ;; python instead of python3.
+ python-wrapper
+ tar))
(arguments
- `(#:make-flags
- (list (string-append "DIR_NAME=openmsx")
- (string-append "TAR="
- (search-input-file %build-inputs "/bin/tar")))
- ;; The check phase only verifies md5sums, see openttd-opengfx.
- #:tests? #f
- #:phases
- (modify-phases %standard-phases
- (delete 'configure)
- (replace 'install
- (lambda* (#:key outputs #:allow-other-keys)
- (copy-recursively "openmsx"
- (string-append (assoc-ref outputs "out")
- "/share/games/openttd/baseset"
- "/openmsx")))))))
+ (list
+ #:make-flags
+ #~(list (string-append "DIR_NAME=openmsx")
+ (string-append "TAR="
+ (search-input-file %build-inputs "/bin/tar")))
+ ;; The check phase only verifies md5sums, see openttd-opengfx.
+ #:tests? #f
+ #:phases
+ #~(modify-phases %standard-phases
+ (delete 'configure)
+ (replace 'install
+ (lambda* (#:key outputs #:allow-other-keys)
+ (copy-recursively "openmsx"
+ (string-append (assoc-ref outputs "out")
+ "/share/games/openttd/baseset"
+ "/openmsx")))))))
(home-page "http://dev.openttdcoop.org/projects/openmsx")
(synopsis "Music set for OpenTTD")
(description "OpenMSX is a music set for OpenTTD which makes it possible
- branch master updated (cd23250c16 -> 0b681c5896), guix-commits, 2022/04/19
- 04/09: gnu: openttd-engine: Drop labels from inputs., guix-commits, 2022/04/19
- 07/09: gnu: openttd-openmsx: Use new package style.,
guix-commits <=
- 03/09: gnu: openttd: Let the music play., guix-commits, 2022/04/19
- 01/09: gnu: gnome-shell-extension-just-perfection: Update to 20.0., guix-commits, 2022/04/19
- 02/09: gnu: Add freepats-gm., guix-commits, 2022/04/19
- 06/09: gnu: openttd-opensfx: Use new package style., guix-commits, 2022/04/19
- 09/09: gnu: komikku: Update to 0.38.0., guix-commits, 2022/04/19
- 05/09: gnu: openttd-gfx: Use new package style., guix-commits, 2022/04/19
- 08/09: gnu: openttd: Use new package style., guix-commits, 2022/04/19