* [PATCH] gnu: Add supertuxkart.
@ 2016-10-17 21:37 Ricardo Wurmus
2016-10-18 12:44 ` Ludovic Courtès
0 siblings, 1 reply; 3+ messages in thread
From: Ricardo Wurmus @ 2016-10-17 21:37 UTC (permalink / raw)
To: guix-devel
* gnu/packages/games.scm (supertuxkart): New variable.
---
gnu/packages/games.scm | 74 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 74 insertions(+)
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 17ca12b..90963bd 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -969,6 +969,80 @@ This game is based on the GPL version of the famous game TuxRacer.")
(home-page "http://sourceforge.net/projects/extremetuxracer/")
(license license:gpl2+)))
+(define-public supertuxkart
+ (package
+ (name "supertuxkart")
+ (version "0.9.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://sourceforge/supertuxkart/SuperTuxKart/"
+ version "/supertuxkart-" version "-src.tar.xz"))
+ (sha256
+ (base32
+ "10l2ljmd7mv8f9ylarqmxxryicdnph2qkm3g5maxnsm2k2q0n20b"))
+ (modules '((guix build utils)))
+ (snippet
+ ;; Delete bundled library sources
+ '(begin
+ ;; FIXME: try to unbundle enet, and angelscript
+ (for-each delete-file-recursively
+ '("lib/zlib"
+ "lib/libpng"
+ "lib/jpeglib"
+ "lib/glew"
+ "lib/wiiuse"))
+ #t))))
+ (build-system cmake-build-system)
+ (arguments
+ `(#:tests? #f ; no check target
+ #:configure-flags
+ (list "-DUSE_WIIUSE=0"
+ ;; Do not use the bundled zlib
+ "-DNO_IRR_COMPILE_WITH_ZLIB_=TRUE"
+ ;; Irrlicht returns an integer instead of a boolean
+ "-DCMAKE_C_FLAGS=-fpermissive")
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'unbundle
+ (lambda* (#:key inputs #:allow-other-keys)
+ (substitute* "CMakeLists.txt"
+ ;; Supertuxkart uses modified versions of the Irrlicht engine
+ ;; and the bullet library. The developers gave an explanation here:
+ ;; http://forum.freegamedev.net/viewtopic.php?f=17&t=3906
+ (("add_subdirectory\\(.*/(glew|zlib)\"\\)") "")
+ (("glew")
+ (string-append (assoc-ref inputs "glew")
+ "/lib/libGLEW.a"))
+ (("include_directories\\(\"\\$\\{PROJECT_SOURCE_DIR\\}/lib/glew/include\"\\)")
+ (string-append "include_directories(\""
+ (assoc-ref inputs "glew")
+ "/include\")")))
+ #t)))))
+ (inputs
+ `(("glew" ,glew)
+ ("zlib" ,zlib)
+ ("openal" ,openal)
+ ("libvorbis" ,libvorbis)
+ ("freetype" ,freetype)
+ ("fribidi" ,fribidi)
+ ("mesa" ,mesa)
+ ("libx11" ,libx11)
+ ("libxrandr" ,libxrandr)
+ ("curl" ,curl)
+ ;; The following input is needed to build the bundled and modified
+ ;; version of irrlicht.
+ ("libjpeg" ,libjpeg)))
+ (native-inputs
+ `(("pkg-config" ,pkg-config)))
+ (home-page "http://supertuxkart.net")
+ (synopsis "3D kart racing game")
+ (description "SuperTuxKart is a 3D kart racing game, with a focus on
+having fun over realism. You can play with up to 4 friends on one PC, racing
+against each other or just trying to beat the computer; single-player mode is
+also available.")
+ (license license:gpl3+)))
+
(define-public gnujump
(package
(name "gnujump")
--
2.10.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] gnu: Add supertuxkart.
2016-10-17 21:37 [PATCH] gnu: Add supertuxkart Ricardo Wurmus
@ 2016-10-18 12:44 ` Ludovic Courtès
2016-10-23 13:11 ` Ricardo Wurmus
0 siblings, 1 reply; 3+ messages in thread
From: Ludovic Courtès @ 2016-10-18 12:44 UTC (permalink / raw)
To: Ricardo Wurmus; +Cc: guix-devel
Ricardo Wurmus <rekado@elephly.net> skribis:
> * gnu/packages/games.scm (supertuxkart): New variable.
Woohoo!
> + (snippet
> + ;; Delete bundled library sources
> + '(begin
> + ;; FIXME: try to unbundle enet, and angelscript
> + (for-each delete-file-recursively
> + '("lib/zlib"
> + "lib/libpng"
> + "lib/jpeglib"
> + "lib/glew"
> + "lib/wiiuse"))
> + #t))))
[...]
> + (substitute* "CMakeLists.txt"
> + ;; Supertuxkart uses modified versions of the Irrlicht engine
> + ;; and the bullet library. The developers gave an explanation here:
> + ;; http://forum.freegamedev.net/viewtopic.php?f=17&t=3906
> + (("add_subdirectory\\(.*/(glew|zlib)\"\\)") "")
I think this clause should go to the snippet above.
Otherwise LGTM, thanks!
Ludo’.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] gnu: Add supertuxkart.
2016-10-18 12:44 ` Ludovic Courtès
@ 2016-10-23 13:11 ` Ricardo Wurmus
0 siblings, 0 replies; 3+ messages in thread
From: Ricardo Wurmus @ 2016-10-23 13:11 UTC (permalink / raw)
To: Ludovic Courtès; +Cc: guix-devel
Ludovic Courtès <ludo@gnu.org> writes:
> Ricardo Wurmus <rekado@elephly.net> skribis:
>
>> * gnu/packages/games.scm (supertuxkart): New variable.
>
> Woohoo!
>
>> + (snippet
>> + ;; Delete bundled library sources
>> + '(begin
>> + ;; FIXME: try to unbundle enet, and angelscript
>> + (for-each delete-file-recursively
>> + '("lib/zlib"
>> + "lib/libpng"
>> + "lib/jpeglib"
>> + "lib/glew"
>> + "lib/wiiuse"))
>> + #t))))
>
> [...]
>
>> + (substitute* "CMakeLists.txt"
>> + ;; Supertuxkart uses modified versions of the Irrlicht engine
>> + ;; and the bullet library. The developers gave an explanation here:
>> + ;; http://forum.freegamedev.net/viewtopic.php?f=17&t=3906
>> + (("add_subdirectory\\(.*/(glew|zlib)\"\\)") "")
>
> I think this clause should go to the snippet above.
I moved it to the snippet and pushed as
1a0633e79b83d9ee740a83f29c05b86e9558da00.
Thanks!
~~ Ricardo
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-10-23 13:12 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-17 21:37 [PATCH] gnu: Add supertuxkart Ricardo Wurmus
2016-10-18 12:44 ` Ludovic Courtès
2016-10-23 13:11 ` Ricardo Wurmus
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).