unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: David Thompson <dthompson2@worcester.edu>
To: guix-devel@gnu.org
Subject: [PATCH 3/3] gnu: Add minetest.
Date: Fri,  5 Sep 2014 14:53:18 -0400	[thread overview]
Message-ID: <1409943198-858-3-git-send-email-dthompson2@worcester.edu> (raw)
In-Reply-To: <1409943198-858-1-git-send-email-dthompson2@worcester.edu>

* gnu/packages/games.scm (minetest): New variable.
---
 gnu/packages/games.scm | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 58 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 86ad436..e79e8a7 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -45,6 +45,9 @@
   #:use-module (gnu packages pulseaudio)
   #:use-module (gnu packages linux)
   #:use-module (gnu packages zip)
+  #:use-module (gnu packages xiph)
+  #:use-module (gnu packages curl)
+  #:use-module (gnu packages lua)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system cmake))
 
@@ -400,3 +403,58 @@ buffers, and audio capture.")
      "3D game engine.")
     (home-page "http://irrlicht.sourceforge.net/")
     (license bsd-3)))
+
+(define-public minetest
+  (package
+    (name "minetest")
+    (version "0.4.10")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://github.com/minetest/minetest/archive/"
+                    version ".tar.gz"))
+              (sha256
+               (base32
+                "1xxv0g83iqszjgwnbdcbsprqg76cb6jnbsh5qhm7lcwx4wy2y2k2"))))
+    (build-system cmake-build-system)
+    (arguments
+     '(#:phases (alist-cons-before
+                 'configure 'set-cpath
+                 (lambda* (#:key inputs #:allow-other-keys)
+                   ;; Adjust the CPATH so that cmake can find irrlicht,
+                   ;; openal, and curl headers.
+                   (setenv "CPATH"
+                           (string-append
+                            (getenv "CPATH") ":"
+                            (assoc-ref inputs "irrlicht")
+                            "/include/irrlicht:"
+                            (assoc-ref inputs "openal")
+                            "/include/AL:"
+                            (assoc-ref inputs "curl")
+                            "/include/curl")))
+                 %standard-phases)
+       #:configure-flags '("-DRUN_IN_PLACE=0"
+                           "-DENABLE_FREETYPE=1"
+                           "-DENABLE_GETTEXT=1")
+       #:tests? #f)) ; no check target
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (inputs
+     `(("irrlicht" ,irrlicht)
+       ("libpng" ,libpng)
+       ("libjpeg-8" ,libjpeg-8)
+       ("libxxf86vm" ,libxxf86vm)
+       ("mesa" ,mesa)
+       ("libogg" ,libogg)
+       ("libvorbis" ,libvorbis)
+       ("openal" ,openal)
+       ("freetype" ,(@ (gnu packages fontutils) freetype))
+       ("curl" ,curl)
+       ("luajit" ,luajit)
+       ("gettext" ,gnu-gettext)
+       ("sqlite" ,sqlite)))
+    (synopsis "Infinite-world block sandbox game")
+    (description
+     "Minetest is an infinite-world block sandbox game and a game engine.")
+    (home-page "http://minetest.net")
+    (license lgpl2.1+)))
-- 
2.1.0

  parent reply	other threads:[~2014-09-05 18:53 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-09-05 18:53 [PATCH 1/3] gnu: Add openal David Thompson
2014-09-05 18:53 ` [PATCH 2/3] gnu: Add irrlicht David Thompson
2014-09-05 19:10   ` Eric Bavier
2014-09-05 19:42     ` David Thompson
2014-09-05 18:53 ` David Thompson [this message]
2014-09-05 20:18   ` [PATCH 3/3] gnu: Add minetest Ludovic Courtès
2014-09-06  3:56     ` David Thompson
2014-09-06 10:52       ` Ludovic Courtès
2014-09-06 18:26         ` David Thompson
2014-09-05 20:13 ` [PATCH 1/3] gnu: Add openal Ludovic Courtès

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1409943198-858-3-git-send-email-dthompson2@worcester.edu \
    --to=dthompson2@worcester.edu \
    --cc=guix-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).