guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: Add supertux.


From: Leo Famulari
Subject: 01/01: gnu: Add supertux.
Date: Tue, 2 Aug 2016 00:40:31 +0000 (UTC)

lfam pushed a commit to branch master
in repository guix.

commit 826a3ca22c5ed2b39c82bfee32a76c26bdea4223
Author: nee <address@hidden>
Date:   Mon Aug 1 19:30:47 2016 +0200

    gnu: Add supertux.
    
    * gnu/packages/games.scm (supertux): New variable.
    
    Signed-off-by: Leo Famulari <address@hidden>
---
 gnu/packages/games.scm |   34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 4db531d..c17d200 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -2697,3 +2697,37 @@ with the \"Stamp\" tool within Tux Paint.")
     (description
      "Tux Paint Config is a graphical configuration editor for Tux Paint.")
     (license license:gpl2)))            ;no "or later" present
+
+(define-public supertux
+  (package
+   (name "supertux")
+   (version "0.4.0")
+   (source (origin
+            (method url-fetch)
+            (uri (string-append 
"https://github.com/SuperTux/supertux/releases/";
+                                "download/v" version
+                                "/supertux-" version ".tar.bz2"))
+            (sha256
+             (base32
+              "10ppmy6w77lxj8bdzjahc9bidgl4qgzr9rimn15rnqay84ydx3fi"))))
+   (arguments '(#:tests? #f
+                #:configure-flags '("-DINSTALL_SUBDIR_BIN=bin")))
+   (build-system cmake-build-system)
+   (inputs `(("sdl2" ,sdl2)
+             ("sdl2-image" ,sdl2-image)
+             ("sdl2-mixer" ,sdl2-mixer)
+             ("openal" ,openal)
+             ("mesa" ,mesa)
+             ("glew" ,glew)
+             ("libvorbis" ,libvorbis)
+             ("libogg" ,libogg)
+             ("physfs" ,physfs)
+             ("curl" ,curl)
+             ("boost" ,boost)))
+   (native-inputs `(("pkg-config" ,pkg-config)))
+   (synopsis "2D platformer game")
+   (description "SuperTux is a free classic 2D jump'n run sidescroller game
+in a style similar to the original Super Mario games covered under
+the GNU GPL.")
+   (home-page "https://supertuxproject.org/";)
+   (license license:gpl3+)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]