From ab916c25db60dbed74b4c7a74f75a4c9b882d3e7 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Tue, 28 Apr 2015 13:29:38 -0500 Subject: [PATCH] Add orbital sniper game. Not compiling right though! --- gnu/packages/games.scm | 28 ++++++++++++++++++++++++++++ gnu/packages/sdl.scm | 3 ++- 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index d86e151..694d3a7 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -879,3 +879,31 @@ bones. 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 orbital-eunuchs-sniper + (package + (name "orbital-eunuchs-sniper") + (version "1.30") + (source (origin + (method url-fetch) + (uri (string-append + "https://icculus.org/oes/orbital_eunuchs_sniper-" + version + ".tar.gz")) + (sha256 + (base32 + "02p7kq2j2p84hzxvynfmm74z2scc7zqzwr3zjv5hjwyjhf8r172c")))) + (build-system gnu-build-system) + (arguments + '(#:configure-flags + (list (string-append "--with-sdl-prefix=" + (assoc-ref %build-inputs "sdl-union"))))) + (inputs + `(("sdl-union" ,sdl-union))) + (synopsis "Overhead shooting game: snipe terrorists to protect the VIP") + (description "Orbital Eunuchs Sniper is an overhead shooting game. +You (the Eunuch on the orbital laser platform) are tasked with protecting the +VIPs (blue) from the terrorists (red)! You view a city from overhead, from +the point of a view of an orbiting satellite.") + (home-page "https://icculus.org/oes/") + (license license:zlib))) diff --git a/gnu/packages/sdl.scm b/gnu/packages/sdl.scm index 4e9ebfb..7cc4198 100644 --- a/gnu/packages/sdl.scm +++ b/gnu/packages/sdl.scm @@ -42,7 +42,8 @@ sdl-image sdl-mixer sdl-net - sdl-ttf)) + sdl-ttf + sdl-union)) (define sdl (package -- 2.1.4