From mboxrd@z Thu Jan 1 00:00:00 1970 From: Fabian Harfert Subject: [PATCH 2/7] gnu: Add libmatekbd. Date: Fri, 19 Feb 2016 21:06:16 +0100 Message-ID: <1455912381-25148-2-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]:57159) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aWrJz-0006SC-8X 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 1aWrJv-0007cm-VU for guix-devel@gnu.org; Fri, 19 Feb 2016 15:06:35 -0500 Received: from mout.web.de ([212.227.15.3]:62267) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aWrJv-0007cT-NV for guix-devel@gnu.org; Fri, 19 Feb 2016 15:06:31 -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 (libmatekbd): New variable. --- gnu/packages/mate.scm | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm index 7eb83de..ebe99cb 100644 --- a/gnu/packages/mate.scm +++ b/gnu/packages/mate.scm @@ -33,7 +33,8 @@ #:use-module (gnu packages xml) #:use-module (gnu packages python) #:use-module (gnu packages freedesktop) - #:use-module (gnu packages polkit)) + #:use-module (gnu packages polkit) + #:use-module (gnu packages iso-codes)) (define-public mate-icon-theme (package @@ -239,3 +240,34 @@ assorted menu related utility programs.") "This package contains extensions for PolicyKit used by the MATE desktop environment.") (license license:lgpl2.0+))) + +(define-public libmatekbd + (package + (name "libmatekbd") + (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 + "18jfnrxpdhpqish8a0fzcgndbqb8a0z5p8vahd3spl1zn97lk82q")))) + (build-system gnu-build-system) + (native-inputs + `(("intltool" ,intltool) + ("pkg-config" ,pkg-config) + ("glib:bin" ,glib "bin"))) + (inputs + `(("dconf" ,dconf) + ("iso-codes" ,iso-codes))) + (propagated-inputs + `(("gtk+" ,gtk+-2) + ("glib" ,glib) + ("libxklavier" ,libxklavier))) + (home-page "http://mate-desktop.org/") + (synopsis "MATE library to manage keyboard configuration") + (description + "Libmatekbd offers an API to manage the keyboard in MATE applications and +the GUI elements to display its operations.") + (license license:lgpl2.0+))) -- 1.9.1