From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Hashe Subject: [PATCH 1/2] gnu: Add freealut. Date: Sat, 19 Mar 2016 01:56:14 -0500 Message-ID: <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]:54929) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ahAoK-0003hw-TO for guix-devel@gnu.org; Sat, 19 Mar 2016 02:56:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ahAoH-0004yr-NL for guix-devel@gnu.org; Sat, 19 Mar 2016 02:56:32 -0400 Received: from mail-oi0-x22d.google.com ([2607:f8b0:4003:c06::22d]:36377) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ahAoH-0004yn-Ih for guix-devel@gnu.org; Sat, 19 Mar 2016 02:56:29 -0400 Received: by mail-oi0-x22d.google.com with SMTP id r187so105766907oih.3 for ; Fri, 18 Mar 2016 23:56:29 -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 e5sm7732590obs.28.2016.03.18.23.56.27 for (version=TLS1_2 cipher=AES128-SHA bits=128/128); Fri, 18 Mar 2016 23:56:28 -0700 (PDT) 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/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 ;;; Copyright © 2015 Alex Kost ;;; Copyright © 2015, 2016 Mark H Weaver +;;; Copyright © 2016 David Hashe ;;; ;;; 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