all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#49284] [PATCH] gnu: Add fheroes2
@ 2021-06-30  5:49 Andrew Tropin
  2021-06-30  9:03 ` Leo Prikler
       [not found] ` <handler.49284.B.16250321759695.ack@debbugs.gnu.org>
  0 siblings, 2 replies; 10+ messages in thread
From: Andrew Tropin @ 2021-06-30  5:49 UTC (permalink / raw)
  To: 49284

* gnu/packages/games.scm (fheroes2): New variable.
---
 There are no tests in the project, so they are disabled.

 gnu/packages/games.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 83cb738b9c..7a87123df3 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -12511,3 +12511,33 @@ wreckage.  You're stranded on a desert island and have to survive.  In order to
 do so you need to explore the island, find food, build a shelter and try to
 get attention, so you get found.")
       (license license:cc-by4.0))))
+
+(define-public fheroes2
+  (package
+    (name "fheroes2")
+    (version "0.9.4")
+    (build-system cmake-build-system)
+    (arguments
+     `(#:tests? #f
+       #:make-flags '("FHEROES2_STRICT_COMPILATION=1"
+                      "RELEASE=1")))
+    (native-inputs
+     `(("gettext" ,gettext-minimal)))
+    (inputs
+     `(("zlib" ,zlib)
+       ("libpng" ,libpng)
+       ("sdl" ,(sdl-union (list sdl2 sdl2-image sdl2-mixer sdl2-ttf)))))
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/ihhub/fheroes2")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0a3xi3k7ngp0byhmg7wq22l1hix3jwr68prk2y6frqhzbfskrvyg"))))
+    (home-page "https://ihhub.github.io/fheroes2/")
+    (synopsis "Turn-based strategy game engine")
+    (description "Free implementation of Heroes of Might and Magic II (aka
+HOMM2) game engine.")
+    (license license:gpl2)))
-- 
2.32.0






^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2021-09-14  6:28 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-30  5:49 [bug#49284] [PATCH] gnu: Add fheroes2 Andrew Tropin
2021-06-30  9:03 ` Leo Prikler
2021-06-30 10:17   ` [bug#49284] [PATCH v2] " Andrew Tropin
2021-06-30 10:20   ` [bug#49284] [PATCH] " Andrew Tropin
2021-06-30 10:48     ` Leo Prikler
2021-06-30 11:22       ` Andrew Tropin
2021-07-02  9:11         ` Nicolas Goaziou
     [not found] ` <handler.49284.B.16250321759695.ack@debbugs.gnu.org>
2021-09-08  9:34   ` [bug#49284] [PATCH v3] " Andrew Tropin
2021-09-13 20:25     ` bug#49284: " Nicolas Goaziou
2021-09-14  6:27       ` [bug#49284] " Andrew Tropin

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.