From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37433) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d4pW9-0000M5-Rn for guix-patches@gnu.org; Sun, 30 Apr 2017 10:08:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d4pW6-00057n-Hd for guix-patches@gnu.org; Sun, 30 Apr 2017 10:08:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:49680) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d4pW6-00057j-9F for guix-patches@gnu.org; Sun, 30 Apr 2017 10:08:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d4pW6-00005Y-4Q for guix-patches@gnu.org; Sun, 30 Apr 2017 10:08:02 -0400 Subject: bug#26595: lugaru Resent-Message-ID: Date: Sun, 30 Apr 2017 16:07:27 +0200 From: Julien Lepiller Message-ID: <20170430160721.68e1999f@lepiller.eu> In-Reply-To: <8760hmhu05.fsf@fastmail.com> References: <20170421213357.22653fcc@lepiller.eu> <87tw5cqlzg.fsf@elephly.net> <20170430144517.71ab0b51@lepiller.eu> <8760hmhu05.fsf@fastmail.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/0jR3FKkE3V/m3Z8GmNRFq38" 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_/0jR3FKkE3V/m3Z8GmNRFq38 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Le Sun, 30 Apr 2017 16:04:10 +0200, Marius Bakke a =C3=A9crit : > Julien Lepiller writes: >=20 > > * gnu/packages/games.scm (lugaru): New variable. =20 >=20 > [...] >=20 > > + (arguments > > + `(#:configure-flags > > + (list "-DSYSTEM_INSTALL=3DON") > > + #:tests? #f)) =20 >=20 > Please specify whether there are no tests, or they need something not > available in the build environment, missing dependencies etc. >=20 > > + (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)))) =20 >=20 > We usually add comments about what is covered by which license as > well. In this case it's a safe guess that assets are CC-BY-SA, but > it's nice to have it explicit regardless. Other than that looks good! Arg, I sent the old patch. Here is the new one. --MP_/0jR3FKkE3V/m3Z8GmNRFq38 Content-Type: text/x-patch Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename=0001-gnu-Add-lugaru.patch =46rom caccc34b4c118e5c7edfa92bbf4b08a7c7a7af87 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 | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index b31bb93db..9d554af41 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -3941,3 +3941,43 @@ 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=3DON") + ;; no test target + #: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 "Lugaru is a third-person action game. The main characte= r, +Turner, is an anthropomorphic rebel bunny rabbit with impressive combat sk= ills. +In his quest to find those responsible for slaughtering his village, he un= covers +a far-reaching conspiracy involving the corrupt leaders of the rabbit repu= blic +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+ ; code + ;; assets: + license:cc-by-sa3.0 + license:cc-by-sa4.0)))) --=20 2.12.2 --MP_/0jR3FKkE3V/m3Z8GmNRFq38--