all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [PATCH 1/2] gnu: Add freealut.
@ 2016-03-19  6:56 David Hashe
  2016-03-19  6:56 ` [PATCH 2/2] gnu: Add taisei David Hashe
  2016-03-21 14:36 ` [PATCH 1/2] gnu: Add freealut Ricardo Wurmus
  0 siblings, 2 replies; 6+ messages in thread
From: David Hashe @ 2016-03-19  6:56 UTC (permalink / raw)
  To: guix-devel

* 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 <andreas@enge.fr>
 ;;; Copyright © 2015 Alex Kost <alezost@gmail.com>
 ;;; Copyright © 2015, 2016 Mark H Weaver <mhw@netris.org>
+;;; Copyright © 2016 David Hashe <david.hashe@dhashe.com>
 ;;;
 ;;; 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

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2016-03-21 21:45 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-03-19  6:56 [PATCH 1/2] gnu: Add freealut David Hashe
2016-03-19  6:56 ` [PATCH 2/2] gnu: Add taisei David Hashe
2016-03-21 14:36 ` [PATCH 1/2] gnu: Add freealut Ricardo Wurmus
2016-03-21 20:44   ` David Hashe
2016-03-21 21:24     ` Ricardo Wurmus
2016-03-21 21:44       ` David Hashe

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.