From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:54235) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ioQFs-0005Ol-1h for guix-patches@gnu.org; Mon, 06 Jan 2020 06:09:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ioQFq-0006oZ-QE for guix-patches@gnu.org; Mon, 06 Jan 2020 06:09:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:39232) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ioQFq-0006oO-N1 for guix-patches@gnu.org; Mon, 06 Jan 2020 06:09:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ioQFq-0007Am-Iz for guix-patches@gnu.org; Mon, 06 Jan 2020 06:09:02 -0500 Subject: [bug#38981] [PATCH] gnu: Add corsix-th. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:54094) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ioQFQ-0005O5-Fd for guix-patches@gnu.org; Mon, 06 Jan 2020 06:08:37 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ioQFP-0006Wc-8D for guix-patches@gnu.org; Mon, 06 Jan 2020 06:08:36 -0500 Received: from araneo.si ([90.157.193.204]:41268) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ioQFO-0006Vp-Sx for guix-patches@gnu.org; Mon, 06 Jan 2020 06:08:35 -0500 Received: from araneo.si (localhost.lan [127.0.0.1]) by araneo.si (OpenSMTPD) with ESMTP id 3d280e1b for ; Mon, 6 Jan 2020 11:08:33 +0000 (UTC) From: Timotej Lazar Date: Mon, 6 Jan 2020 12:07:56 +0100 Message-Id: <20200106110756.4751-1-timotej.lazar@araneo.si> 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: 38981@debbugs.gnu.org Cc: Timotej Lazar * gnu/packages/games.scm (corsix-th): New variable. --- gnu/packages/games.scm | 56 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 066e2c8cf3..969518f8ca 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -462,6 +462,62 @@ want what you have.") (define-public cataclysm-dark-days-ahead (deprecated-package "cataclysm-dark-days-ahead" cataclysm-dda)) +(define-public corsix-th + (package + (name "corsix-th") + (version "0.63") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/CorsixTH/CorsixTH.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rkyk8g55xny276s0hr5k8mq6f4nzz56d3k2mp09dzfymrqb8hgi")))) + (build-system cmake-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'install 'wrap-binary + (lambda _ + ;; Set Lua module paths and default MIDI soundfont on startup. + (let* ((out (assoc-ref %outputs "out")) + (fluid (assoc-ref %build-inputs "fluid-3")) + (lua-version ,(version-major+minor (package-version lua))) + (lua-cpath + (map (lambda (lib) + (string-append + (assoc-ref %build-inputs (string-append "lua-" lib)) + "/lib/lua/" lua-version "/?.so")) + '("filesystem" "lpeg")))) + (wrap-program (string-append out "/bin/corsix-th") + `("LUA_CPATH" ";" = ,lua-cpath) + `("SDL_SOUNDFONTS" ":" suffix + (,(string-append fluid "/share/soundfonts/FluidR3Mono_GM.sf3"))))) + #t))) + #:tests? #f)) ; TODO need busted package to run tests + ;; Omit Lua-Socket dependency to disable automatic updates. + (inputs + `(("ffmpeg" ,ffmpeg) + ("fluid-3" ,fluid-3) + ("freetype" ,freetype) + ("lua" ,lua) + ("lua-filesystem" ,lua-filesystem) + ("lua-lpeg" ,lua-lpeg) + ("sdl2" ,sdl2) + ("sdl2-mixer" ,sdl2-mixer))) + (home-page "https://corsixth.com") + (synopsis "Free implementation of Theme Hospital game engine") + (description + "Reimplementation of the 1997 Bullfrog business simulation game Theme +Hospital. As well as faithfully recreating the original engine, CorsixTH adds +support for high resolutions, custom levels and more. This package does +@emph{not} provide the game assets.") + (license (list + license:expat ; main license + license:bsd-3)))) ; CorsixTH/Src/random.c + (define-public cowsay (package (name "cowsay") -- 2.24.1