From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mathieu Lirzin Subject: [PATCH 4/7] gnu: Add pcmanfm. Date: Thu, 16 Jul 2015 12:19:17 +0200 Message-ID: <1437041960-5189-5-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]:37492) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZFgIz-0008V9-IV for guix-devel@gnu.org; Thu, 16 Jul 2015 06:22:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZFgIv-0007xb-Fn for guix-devel@gnu.org; Thu, 16 Jul 2015 06:22:17 -0400 Received: from smtp11.openmailbox.org ([62.4.1.45]:40154) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZFgIv-0007ws-AN for guix-devel@gnu.org; Thu, 16 Jul 2015 06:22:13 -0400 Received: from localhost (localhost [127.0.0.1]) by mail2.openmailbox.org (Postfix) with ESMTP id 9EB4D20247B for ; Thu, 16 Jul 2015 12:22:12 +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 (pcmanfm): New variable. --- gnu/packages/lxde.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) --------------2.1.4 Content-Type: text/x-patch; name="0004-gnu-Add-pcmanfm.patch" Content-Disposition: inline; filename="0004-gnu-Add-pcmanfm.patch" Content-Transfer-Encoding: quoted-printable diff --git a/gnu/packages/lxde.scm b/gnu/packages/lxde.scm index bd078ff..47d6627 100644 --- a/gnu/packages/lxde.scm +++ b/gnu/packages/lxde.scm @@ -22,6 +22,7 @@ #:use-module (gnu packages gnome) #:use-module (gnu packages gtk) #:use-module (gnu packages pkg-config) + #:use-module (gnu packages xorg) #:use-module (guix build-system gnu) #:use-module (guix download) #:use-module ((guix licenses) #:prefix license:) @@ -110,4 +111,31 @@ speed up the access to freedesktop.org defined appli= cation menus.") (home-page "http://lxde.org") (license license:lgpl2.1+))) =20 +(define-public pcmanfm + (package + (name "pcmanfm") + (version "1.2.3") + (source (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/project/" name "= /" + "PCManFM%20%2B%20Libfm%20%28tarball%20= release" + "%29/PCManFM/" name "-" version ".tar.= xz")) + (sha256 + (base32 + "1033rw5jd7nlzbcdpx3bik7347kyh1sg1gkla424gq9vqqpxia6g"))= )) + (build-system gnu-build-system) + ;; (#:configure-flags '("--sysconfdir=3D/etc")) suggested in README. + (inputs `(("gtk+" ,gtk+-2) + ;; TODO: add ("gvfs" ,gvfs). + ("libfm" ,libfm) + ("libx11" ,libx11))) + (native-inputs `(("intltool" ,intltool) + ("libtool" ,libtool) + ("pkg-config" ,pkg-config))) + (synopsis "LXDE file manager") + (description "PCMan is a lightweight GTK+ based file manager, compli= ant +with freedesktop.org standard.") + (home-page "http://lxde.org") + (license license:gpl2+))) + ;;; lxde.scm ends here --------------2.1.4--