From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:59343) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hvoxA-00062W-B0 for guix-patches@gnu.org; Thu, 08 Aug 2019 16:24:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hvox9-0007hL-5E for guix-patches@gnu.org; Thu, 08 Aug 2019 16:24:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:32943) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hvox9-0007hA-27 for guix-patches@gnu.org; Thu, 08 Aug 2019 16:24:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hvox8-000428-UM for guix-patches@gnu.org; Thu, 08 Aug 2019 16:24:02 -0400 Subject: [bug#36978] [PATCH 2/3] gnu: Add fifengine. Resent-Message-ID: From: Christopher Baines Date: Thu, 8 Aug 2019 21:23:51 +0100 Message-Id: <20190808202352.21748-2-mail@cbaines.net> In-Reply-To: <20190808202352.21748-1-mail@cbaines.net> References: <20190808202352.21748-1-mail@cbaines.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: 36978@debbugs.gnu.org * gnu/packcages/games.scm (fifengine): New variable. --- gnu/packages/games.scm | 46 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 8ee0ef94b3..f05efdd8a5 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -2060,6 +2060,52 @@ specifically designed for games. It has a built in set of extendable GUI Widgets, and allows users to create more.") (license license:lgpl2.1+))) +(define-public fifengine + (package + (name "fifengine") + (version "0.4.2") + (source (origin + (method url-fetch) + (uri (string-append "https://codeload.github.com/fifengine/" + "fifengine/tar.gz/" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1y4grw25cq5iqlg05rnbyxw1njl11ypidnlsm3qy4sm3xxdvb0p8")))) + (build-system cmake-build-system) + (arguments + '(#:tests? #f + #:configure-flags + (list + (string-append "-DOPENALSOFT_INCLUDE_DIR=" + (assoc-ref %build-inputs "openal") + "/include/AL") + (string-append "-DPYTHON_SITE_PACKAGES=" + (assoc-ref %outputs "out") + "/lib/python3.7/site-packages")))) + (inputs + `(("sdl2" ,sdl2) + ("sdl2-image" ,sdl2-image) + ("sdl2-ttf" ,sdl2-ttf) + ("tinyxml" ,tinyxml) + ("openal" ,openal) + ("libogg" ,libogg) + ("glew" ,glew) + ("libvorbis" ,libvorbis) + ("boost" ,boost) + ("fifechan" ,fifechan) + ("swig" ,swig) + ("python" ,python))) + (propagated-inputs + `(("python-future" ,python-future))) + (home-page "https://www.fifengine.net/") + (synopsis "FIFE is a multi-platform isometric game engine written in C++") + (description + "@acronym{FIFE, Flexible Isometric Free Engine} is a multi-platform +isometric game engine. Python bindings are included allowing users to create +games using Python as well as C++.") + (license license:lgpl2.1+))) + (define-public fizmo (package (name "fizmo") -- 2.22.0