From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Hashe Subject: [PATCH 2/2] gnu: Add taisei. Date: Sat, 19 Mar 2016 01:56:15 -0500 Message-ID: <1458370575-388-2-git-send-email-david.hashe@dhashe.com> References: <1458370575-388-1-git-send-email-david.hashe@dhashe.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55026) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ahAoV-0003wq-HM for guix-devel@gnu.org; Sat, 19 Mar 2016 02:56:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ahAoU-00054L-4o for guix-devel@gnu.org; Sat, 19 Mar 2016 02:56:43 -0400 Received: from mail-oi0-x22e.google.com ([2607:f8b0:4003:c06::22e]:36395) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ahAoT-000547-Vl for guix-devel@gnu.org; Sat, 19 Mar 2016 02:56:42 -0400 Received: by mail-oi0-x22e.google.com with SMTP id r187so105768871oih.3 for ; Fri, 18 Mar 2016 23:56:41 -0700 (PDT) Received: from localhost (cpe-192-136-237-24.tx.res.rr.com. [192.136.237.24]) by smtp.gmail.com with ESMTPSA id q184sm7654484oif.6.2016.03.18.23.56.40 for (version=TLS1_2 cipher=AES128-SHA bits=128/128); Fri, 18 Mar 2016 23:56:40 -0700 (PDT) In-Reply-To: <1458370575-388-1-git-send-email-david.hashe@dhashe.com> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org * gnu/packages/games.scm (taisei): New variable. --- gnu/packages/games.scm | 37 ++++++++++++++++++++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 653e0c7..dc26283 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -8,7 +8,7 @@ ;;; Copyright © 2014, 2015 Sou Bunnbu ;;; Copyright © 2014, 2015 Mark H Weaver ;;; Copyright © 2015, 2016 Andreas Enge -;;; Copyright © 2015 David Hashe +;;; Copyright © 2015, 2016 David Hashe ;;; Copyright © 2015 Christopher Allan Webber ;;; Copyright © 2015 Ricardo Wurmus ;;; Copyright © 2015, 2016 Alex Kost @@ -2026,3 +2026,38 @@ is attributed to Albert Einstein.") the chat server psyced with the specific config located at http://lavachat.symlynx.com/unix/") (license license:gpl2+))) + +(define-public taisei + ;; The tarball is named with the maintainer, commit, and revision. + (let ((maintainer "laochailan") + (commit "9ef1a86") + (revision "0")) + (package + (name "taisei") + (version "1.0a") + (source (origin + (method url-fetch) + (uri (string-append + "https://github.com/" maintainer "/" name "/tarball/v" + version)) + (file-name (string-append maintainer "-" name "-" version "-" + revision "-" commit ".tar.gz")) + (sha256 + (base32 + "0smv7rzzg22wnkymi76y2iz5li8hyl418kmpn4h0vm3f6wdw3i1d")))) + (arguments `(#:tests? #f)) ; no tests + (build-system cmake-build-system) + (inputs + `(("sdl" ,sdl) + ("sdl-ttf" ,sdl-ttf) + ("libpng" ,libpng) + ("mesa" ,mesa) + ("glu" ,glu) + ("openal" ,openal) + ("freealut" ,freealut))) + (home-page "https://taisei-project.org/") + (synopsis "Touhou clone") + (description "Taisei is an open clone of the Touhou series. Touhou is a +one-man project of shoot-em-up games set in an isolated world full of Japanese +folklore.") + (license license:expat)))) -- 1.9.1