guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 1/2] gnu: Add freealut.


From: David Hashe
Subject: [PATCH 1/2] gnu: Add freealut.
Date: Sat, 19 Mar 2016 01:56:14 -0500

* gnu/packages/audio.scm (freealut): New variable.
---
 gnu/packages/audio.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index ca438f8..336bfe5 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -4,6 +4,7 @@
 ;;; Copyright © 2015 Andreas Enge <address@hidden>
 ;;; Copyright © 2015 Alex Kost <address@hidden>
 ;;; Copyright © 2015, 2016 Mark H Weaver <address@hidden>
+;;; Copyright © 2016 David Hashe <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1504,6 +1505,40 @@ buffers, and audio capture.")
     (home-page "http://kcat.strangesoft.net/openal.html";)
     (license license:lgpl2.0+)))
 
+(define-public freealut
+  (package
+    (name "freealut")
+    (version "1.1.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    ;; The official repository is defunct. This is the most
+                    ;; popular mirror.
+                    (url (string-append "https://github.com/vancegroup/"; name))
+                    (commit version)))
+              (file-name (string-append name "-" version))
+              (sha256
+               (base32
+                "1v2f9rfy96x516z2yibymja1qp7zgdcrx9li8lmzgwp4jg8kqab5"))))
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'autogen
+                    (lambda _
+                      (zero? (system* "sh" "autogen.sh")))))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("autoconf" ,autoconf)
+       ("automake" ,automake)
+       ("libtool" ,libtool)))
+    (inputs
+     `(("openal" ,openal)))
+    (home-page "http://www.openal.org/";)
+    (synopsis "OpenAL Utility Tool")
+    (description "Freealut is a free implementation of OpenAL's ALUT
+standard.")
+    (license license:lgpl2.0+)))
+
 (define-public patchage
   (package
     (name "patchage")
-- 
1.9.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]