From mboxrd@z Thu Jan 1 00:00:00 1970 From: Fabian Harfert Subject: [PATCH 3/7] gnu: Add libmatemixer. Date: Fri, 19 Feb 2016 21:06:17 +0100 Message-ID: <1455912381-25148-3-git-send-email-fhmgufs@web.de> References: <1455912381-25148-1-git-send-email-fhmgufs@web.de> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57157) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aWrJz-0006S9-82 for guix-devel@gnu.org; Fri, 19 Feb 2016 15:06:36 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aWrJw-0007dA-NZ for guix-devel@gnu.org; Fri, 19 Feb 2016 15:06:35 -0500 Received: from mout.web.de ([212.227.15.3]:65069) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aWrJw-0007cs-Ek for guix-devel@gnu.org; Fri, 19 Feb 2016 15:06:32 -0500 In-Reply-To: <1455912381-25148-1-git-send-email-fhmgufs@web.de> 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/mate.scm (libmatemixer): New variable. --- gnu/packages/mate.scm | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm index ebe99cb..c88db14 100644 --- a/gnu/packages/mate.scm +++ b/gnu/packages/mate.scm @@ -34,7 +34,9 @@ #:use-module (gnu packages python) #:use-module (gnu packages freedesktop) #:use-module (gnu packages polkit) - #:use-module (gnu packages iso-codes)) + #:use-module (gnu packages iso-codes) + #:use-module (gnu packages linux) + #:use-module (gnu packages pulseaudio)) (define-public mate-icon-theme (package @@ -271,3 +273,31 @@ environment.") "Libmatekbd offers an API to manage the keyboard in MATE applications and the GUI elements to display its operations.") (license license:lgpl2.0+))) + +(define-public libmatemixer + (package + (name "libmatemixer") + (version "1.12.1") + (source (origin + (method url-fetch) + (uri (string-append "http://pub.mate-desktop.org/releases/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "1w0grrhlmwajw6d92cs4gfwck6nq23i30alj50243dygycaxvkfy")))) + (build-system gnu-build-system) + (native-inputs + `(("intltool" ,intltool) + ("pkg-config" ,pkg-config))) + (inputs + `(("alsa-lib" ,alsa-lib) + ("pulseaudio" ,pulseaudio))) + (propagated-inputs + `(("glib" ,glib))) + (home-page "http://mate-desktop.org/") + (synopsis "Sound mixer library for MATE Desktop") + (description + "Libmatemixer provides an abstract API allowing access to mixer +functionality available in the PulseAudio, ALSA and OSS sound systems.") + (license license:lgpl2.0+))) -- 1.9.1