me
/
guix
Archived
1
0
Fork 0

gnu: Add freealut.

* gnu/packages/audio.scm (freealut): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
ng0 2016-08-21 02:17:27 +00:00 committed by Efraim Flashner
parent 901c1aae0a
commit c2b411c288
No known key found for this signature in database
GPG Key ID: F4C1D3917EACEE93
1 changed files with 27 additions and 0 deletions

View File

@ -6,6 +6,7 @@
;;; Copyright © 2015, 2016 Mark H Weaver <mhw@netris.org>
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2016 Alex Griffin <a@ajgrf.com>
;;; Copyright © 2016 ng0 <ng0@we.make.ritual.n0.is>
;;;
;;; This file is part of GNU Guix.
;;;
@ -1511,6 +1512,32 @@ 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 url-fetch)
;; Upstream url is unclear, many systems use Fedora, there is also
;; https://github.com/vancegroup/freealut though the status of it
;; (official? unofficial?) is not clear.
(uri (string-append
"https://pkgs.fedoraproject.org/repo/pkgs/" name "/" name "-"
version ".tar.gz" "/e089b28a0267faabdb6c079ee173664a/" name
"-" version ".tar.gz"))
(sha256
(base32
"0kzlil6112x2429nw6mycmif8y6bxr2cwjcvp18vh6s7g63ymlb0"))))
(build-system cmake-build-system)
(arguments
`(#:tests? #f)) ; no check target
(inputs
`(("openal" ,openal)))
(synopsis "Free implementation of OpenAL's ALUT standard")
(description "freealut is the OpenAL Utility Toolkit.")
(home-page "http://kcat.strangesoft.net/openal.html")
(license license:lgpl2.0)))
(define-public patchage
(package
(name "patchage")