From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59152) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d4oEo-0002UV-JZ for guix-patches@gnu.org; Sun, 30 Apr 2017 08:46:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d4oEk-0002vB-IP for guix-patches@gnu.org; Sun, 30 Apr 2017 08:46:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:48796) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d4oEk-0002v5-6m for guix-patches@gnu.org; Sun, 30 Apr 2017 08:46:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d4oEk-0006VP-13 for guix-patches@gnu.org; Sun, 30 Apr 2017 08:46:02 -0400 Subject: bug#26595: lugaru Resent-Message-ID: Date: Sun, 30 Apr 2017 14:45:17 +0200 From: Julien Lepiller Message-ID: <20170430144517.71ab0b51@lepiller.eu> In-Reply-To: <87tw5cqlzg.fsf@elephly.net> References: <20170421213357.22653fcc@lepiller.eu> <87tw5cqlzg.fsf@elephly.net> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/C6jcuR/ZoUo0IDoPEMWMNCH" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 26595@debbugs.gnu.org --MP_/C6jcuR/ZoUo0IDoPEMWMNCH Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi, here is an updated patch. --MP_/C6jcuR/ZoUo0IDoPEMWMNCH Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=0001-gnu-Add-lugaru.patch >From bece8280bf6216e73a6625648ffe2f67bad40d30 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 21 Apr 2017 21:30:03 +0200 Subject: [PATCH] gnu: Add lugaru. * gnu/packages/games.scm (lugaru): New variable. --- gnu/packages/games.scm | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index b31bb93db..1e694d3c7 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -3941,3 +3941,39 @@ fabulous Orb of Zot.") license:expat license:zlib license:asl2.0)))) + +(define-public lugaru + (package + (name "lugaru") + (version "1.2") + (source (origin + (method url-fetch) + (uri (string-append "https://bitbucket.org/osslugaru/lugaru/downloads/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "15zgcshy22q51rm72zi6y9z7qlgnz5iw3gczjdlir4bqmxy4gspk")))) + (build-system cmake-build-system) + (arguments + `(#:configure-flags + (list "-DSYSTEM_INSTALL=ON") + #:tests? #f)) + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("sdl2" ,sdl2) + ("glu" ,glu) + ("libjpeg" ,libjpeg-turbo) + ("libpng" ,libpng) + ("openal" ,openal) + ("vorbis" ,libvorbis) + ("zlib" ,zlib))) + (home-page "https://osslugaru.gitlab.io") + (synopsis "Cross-platform third-person action game") + (description "The main character, Turner, is an anthropomorphic rebel bunny +rabbit with impressive combat skills. In his quest to find those responsible +for slaughtering his village, he uncovers a far-reaching conspiracy involving +the corrupt leaders of the rabbit republic and the starving wolves from a +nearby den. Turner takes it upon himself to fight against their plot and save +his fellow rabbits from slavery.") + (license (list license:gpl2+ license:cc-by-sa3.0)))) -- 2.12.2 --MP_/C6jcuR/ZoUo0IDoPEMWMNCH--