From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mathieu Lirzin Subject: [PATCH 1/7] gnu: Add libfm-extra. Date: Thu, 16 Jul 2015 12:19:14 +0200 Message-ID: <1437041960-5189-2-git-send-email-mthl@openmailbox.org> References: <1437041960-5189-1-git-send-email-mthl@openmailbox.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------2.1.4" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37452) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZFgIu-0008V0-Ow for guix-devel@gnu.org; Thu, 16 Jul 2015 06:22:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZFgIq-0007uO-Oi for guix-devel@gnu.org; Thu, 16 Jul 2015 06:22:12 -0400 Received: from smtp5.openmailbox.org ([62.4.1.39]:55202) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZFgIq-0007tT-Iq for guix-devel@gnu.org; Thu, 16 Jul 2015 06:22:08 -0400 Received: from localhost (localhost [127.0.0.1]) by mail2.openmailbox.org (Postfix) with ESMTP id DF02D202294 for ; Thu, 16 Jul 2015 12:22:07 +0200 (CEST) In-Reply-To: <1437041960-5189-1-git-send-email-mthl@openmailbox.org> 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 This is a multi-part message in MIME format. --------------2.1.4 Content-Type: text/plain; charset=UTF-8; format=fixed Content-Transfer-Encoding: quoted-printable * gnu/packages/lxde.scm (libfm-extra): New variable. --- gnu/packages/lxde.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) --------------2.1.4 Content-Type: text/x-patch; name="0001-gnu-Add-libfm-extra.patch" Content-Disposition: inline; filename="0001-gnu-Add-libfm-extra.patch" Content-Transfer-Encoding: quoted-printable diff --git a/gnu/packages/lxde.scm b/gnu/packages/lxde.scm index cf837f5..29e1f36 100644 --- a/gnu/packages/lxde.scm +++ b/gnu/packages/lxde.scm @@ -17,6 +17,7 @@ ;;; along with GNU Guix. If not, see . =20 (define-module (gnu packages lxde) + #:use-module (gnu packages autotools) #:use-module (gnu packages glib) #:use-module (gnu packages gtk) #:use-module (gnu packages pkg-config) @@ -25,6 +26,31 @@ #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages)) =20 +(define-public libfm-extra + (package + (name "libfm-extra") + (version "1.2.3") + (source (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/project/pcmanfm/= " + "PCManFM%20%2B%20Libfm%20%28tarball%20= " + "release%29/LibFM/libfm-" version ".ta= r.xz")) + (sha256 + (base32 + "1ygvw52262r3jp1f45m9cdpx5xgvd4rkyfszslfqvg2c99ig34n6"))= )) + (build-system gnu-build-system) + (arguments '(#:configure-flags '("--with-extra-only"))) + (inputs `(("glib" ,glib))) + (native-inputs `(("intltool" ,intltool) + ("libtool" ,libtool) + ("pkg-config" ,pkg-config))) + (synopsis "File management support (extra library)") + (description "LibFM provides file management functions built on top = of +Glib/GIO giving a higher-level API. This package contains standalone li= brary +which extends libfm.") + (home-page "http://lxde.org") + (license license:gpl2+))) + (define-public lxappearance (package (name "lxappearance") --------------2.1.4--