summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornee <nee.git@cock.li>2016-08-01 19:30:47 +0200
committerLeo Famulari <leo@famulari.name>2016-08-01 20:40:20 -0400
commit826a3ca22c5ed2b39c82bfee32a76c26bdea4223 (patch)
tree626111b789604b121f710a3ac0b2025f6eb814c2
parent621954ba4e3e83f5725ebac1809bc47fb525d2dd (diff)
gnu: Add supertux.
* gnu/packages/games.scm (supertux): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>
-rw-r--r--gnu/packages/games.scm34
1 files changed, 34 insertions, 0 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 4db531dc0ab..c17d200c3f2 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -2697,3 +2697,37 @@ with the \"Stamp\" tool within Tux Paint.")
2697 (description 2697 (description
2698 "Tux Paint Config is a graphical configuration editor for Tux Paint.") 2698 "Tux Paint Config is a graphical configuration editor for Tux Paint.")
2699 (license license:gpl2))) ;no "or later" present 2699 (license license:gpl2))) ;no "or later" present
2700
2701(define-public supertux
2702 (package
2703 (name "supertux")
2704 (version "0.4.0")
2705 (source (origin
2706 (method url-fetch)
2707 (uri (string-append "https://github.com/SuperTux/supertux/releases/"
2708 "download/v" version
2709 "/supertux-" version ".tar.bz2"))
2710 (sha256
2711 (base32
2712 "10ppmy6w77lxj8bdzjahc9bidgl4qgzr9rimn15rnqay84ydx3fi"))))
2713 (arguments '(#:tests? #f
2714 #:configure-flags '("-DINSTALL_SUBDIR_BIN=bin")))
2715 (build-system cmake-build-system)
2716 (inputs `(("sdl2" ,sdl2)
2717 ("sdl2-image" ,sdl2-image)
2718 ("sdl2-mixer" ,sdl2-mixer)
2719 ("openal" ,openal)
2720 ("mesa" ,mesa)
2721 ("glew" ,glew)
2722 ("libvorbis" ,libvorbis)
2723 ("libogg" ,libogg)
2724 ("physfs" ,physfs)
2725 ("curl" ,curl)
2726 ("boost" ,boost)))
2727 (native-inputs `(("pkg-config" ,pkg-config)))
2728 (synopsis "2D platformer game")
2729 (description "SuperTux is a free classic 2D jump'n run sidescroller game
2730in a style similar to the original Super Mario games covered under
2731the GNU GPL.")
2732 (home-page "https://supertuxproject.org/")
2733 (license license:gpl3+)))