From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:38937) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jOFAx-0000m1-AV for guix-patches@gnu.org; Tue, 14 Apr 2020 02:36:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jOFAw-0006Ot-2w for guix-patches@gnu.org; Tue, 14 Apr 2020 02:36:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:49766) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jOFAw-0006Ok-09 for guix-patches@gnu.org; Tue, 14 Apr 2020 02:36:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jOFAv-0000q3-Tf for guix-patches@gnu.org; Tue, 14 Apr 2020 02:36:01 -0400 Subject: [bug#40621] [PATCH] gnu: Add blobwars. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:38820) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jOFAA-0000e0-5V for guix-patches@gnu.org; Tue, 14 Apr 2020 02:35:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jOFA8-00063K-Io for guix-patches@gnu.org; Tue, 14 Apr 2020 02:35:13 -0400 Received: from mout02.posteo.de ([185.67.36.66]:45233) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1jOFA8-00062s-3U for guix-patches@gnu.org; Tue, 14 Apr 2020 02:35:12 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 24A202400FD for ; Tue, 14 Apr 2020 08:35:09 +0200 (CEST) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 491bMK0Qrsz6tmM for ; Tue, 14 Apr 2020 08:35:08 +0200 (CEST) From: Alberto Eleuterio Flores Guerrero Date: Tue, 14 Apr 2020 01:34:09 -0500 Message-Id: <20200414063409.8701-1-barbanegra+guix@posteo.mx> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable 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: 40621@debbugs.gnu.org * gnu/packages/games.scm (blobwars): New variable. --- gnu/packages/games.scm | 51 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index ba3a199b97..a345e2fece 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -397,6 +397,57 @@ Playing bastet can be a painful experience, especial= ly if you usually make canyons and wait for the long I-shaped block to clear four rows at a tim= e.") (license license:gpl3+))) =20 +(define-public blobwars + (package + (name "blobwars") + (version "2.00") + (source (origin + (method url-fetch) + (uri (string-append "https://downloads.sourceforge.net/pro= ject/" + name "/" name "-" + version ".tar.gz")) + (sha256 + (base32 + "16aagvkx6azf75gm5kaa94bh5npydvhqp3fvdqyfsanzdjgjf1n4"))= )) + (build-system gnu-build-system) + (arguments + `(#:make-flags + (let* ((out (assoc-ref %outputs "out"))) + (list (string-append "PREFIX=3D" out) + (string-append "BINDIR=3D" out "/bin/") + "USEPAK=3D1" + "RELEASE=3D1")) + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'werror-begone + (lambda _ (substitute* "Makefile" (("-Werror") "")))) + ;; No configure script. + (delete 'configure)) + ;; there are no tests + #:tests? #f)) + (inputs + `(("hicolor-icon-theme" ,hicolor-icon-theme) + ("sdl" ,(sdl-union (list sdl2 + sdl2-image + sdl2-mixer + sdl2-ttf + sdl2-net))))) + (native-inputs + `(("pkg-config" ,pkg-config) + ("gettext" ,gettext-minimal))) + (home-page "https://sourceforge.net/projects/blobwars/") + (synopsis "Platform action game featuring a blob with a lot of weapo= ns") + (description "Blobwars: Metal Blob Solid is a 2D platform game, the = first +in the Blobwars series. You take on the role of a fearless Blob agent. = Your +mission is to infiltrate various enemy bases and rescue as many MIAs as = possible, +while battling many vicious aliens.") + (license (list license:gpl2 ; For code and graphics + license:cc0 ; Music and sounds have specific li= censes + license:cc-by3.0 ; see /doc/readme + license:cc-by-sa3.0 + license:lgpl2.1+ + license:bsd-2)))) + (define-public cataclysm-dda (package (name "cataclysm-dda") --=20 2.26.0