diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-06-03 08:18:54 +0200 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-06-03 08:32:26 +0200 |
commit | 742d5c3d68c8b83ef594a5aeb870e27255c3726a (patch) | |
tree | e01c6676c54f41095362202d8aa9a838790a4844 /gnu/packages/games.scm | |
parent | 52b4ce275fda390172fcce9797300ba0d5a89d59 (diff) | |
parent | c11b92a8aae6fe7fad0da8257ec28f5009c37b35 (diff) |
Merge branch 'master' into gnome-team
Diffstat (limited to 'gnu/packages/games.scm')
-rw-r--r-- | gnu/packages/games.scm | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index d1e2248588..862aa26805 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -5393,7 +5393,7 @@ in-window at 640x480 resolution or fullscreen.") (define-public warzone2100 (package (name "warzone2100") - (version "4.3.3") + (version "4.3.5") (source (origin (method url-fetch) @@ -5401,7 +5401,7 @@ in-window at 640x480 resolution or fullscreen.") version "/warzone2100_src.tar.xz")) (sha256 - (base32 "17p58wxwva0qp267hm1alas52jd9h74494wh01ahz880hscbjg1w")) + (base32 "1hq56hm6bn3s2pksznh5g8hgq6ww6fnl1pspr3bi93k3z7v0imh1")) (modules '((guix build utils))) (snippet '(begin @@ -5414,30 +5414,30 @@ in-window at 640x480 resolution or fullscreen.") #t)))) (build-system cmake-build-system) (arguments - `(#:configure-flags '("-DWZ_DISTRIBUTOR=Guix" - "-DWZ_ENABLE_BACKEND_VULKAN=off" - "-DENABLE_DISCORD=off") - #:tests? #f ; TODO: Tests seem to be broken, configure.ac is missing. - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'fix-utfcpp-include - (lambda _ - (substitute* "lib/framework/wzstring.cpp" - (("<utfcpp/source/utf8.h>") "<utf8.h>")) - #t)) - (add-after 'unpack 'link-tests-with-qt - (lambda _ - (substitute* "tests/Makefile.am" - (("(framework_linktest_LDADD|maptest_LDADD) = " prefix) - (string-append prefix "$(QT5_LIBS) "))) - #t)) - (add-after 'unpack 'fix-ivis-linktest - (lambda _ - (substitute* "tests/ivis_linktest.cpp" - (("iV_DrawTextRotated.*;") - (string-append "iV_DrawTextRotated(\"Press ESC to exit.\", " - "100, 100, 0.0f, font_regular);"))) - #t))))) + (list #:configure-flags #~'("-DWZ_DISTRIBUTOR=Guix" + "-DWZ_ENABLE_BACKEND_VULKAN=off" + "-DENABLE_DISCORD=off") + #:tests? #f ; TODO: Tests seem to be broken, configure.ac is missing. + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'fix-utfcpp-include + (lambda _ + (substitute* "lib/framework/wzstring.cpp" + (("<utfcpp/source/utf8.h>") + "<utf8.h>")))) + (add-after 'unpack 'link-tests-with-qt + (lambda _ + (substitute* "tests/Makefile.am" + (("(framework_linktest_LDADD|maptest_LDADD) = " + prefix) + (string-append prefix "$(QT5_LIBS) "))))) + (add-after 'unpack 'fix-ivis-linktest + (lambda _ + (substitute* "tests/ivis_linktest.cpp" + (("iV_DrawTextRotated.*;") + (string-append + "iV_DrawTextRotated(\"Press ESC to exit.\", " + "100, 100, 0.0f, font_regular);")))))))) (native-inputs (list asciidoc ruby-asciidoctor gettext-minimal |