Archived
1
0
Fork 0

gnu: minetest-data: Use new style.

* gnu/packages/minetest.scm (minetest-data)[build-system]: Use
copy-build-system.
[arguments]: Convert to list of G-Expressions.
This commit is contained in:
Liliana Marie Prikler 2022-06-05 14:56:40 +02:00
parent a5afbbe2d6
commit abd6ea5337
No known key found for this signature in database
GPG key ID: 442A84B8C70E2F87

View file

@ -167,21 +167,10 @@ in different ways.")
(sha256 (sha256
(base32 (base32
"12cpaiww148szvnrc8r8cffwvl33smnrl7k29sh401yv0pbqi3j8")))) "12cpaiww148szvnrc8r8cffwvl33smnrl7k29sh401yv0pbqi3j8"))))
(build-system trivial-build-system) (build-system copy-build-system)
(native-inputs
`(("source" ,source)))
(arguments (arguments
`(#:modules ((guix build utils)) (list #:install-plan
#:builder (begin #~'(("." "/share/minetest/games/minetest_game"))))
(use-modules (guix build utils))
(let ((install-dir (string-append
%output
"/share/minetest/games/minetest_game")))
(mkdir-p install-dir)
(copy-recursively
(assoc-ref %build-inputs "source")
install-dir)
#t))))
(synopsis "Main game data for the Minetest game engine") (synopsis "Main game data for the Minetest game engine")
(description (description
"Game data for the Minetest infinite-world block sandbox game.") "Game data for the Minetest infinite-world block sandbox game.")