From: Mathieu Lirzin <mthl@openmailbox.org>
To: guix-devel@gnu.org
Subject: [PATCH 3/7] gnu: Add libfm.
Date: Thu, 16 Jul 2015 12:19:16 +0200 [thread overview]
Message-ID: <1437041960-5189-4-git-send-email-mthl@openmailbox.org> (raw)
In-Reply-To: <1437041960-5189-1-git-send-email-mthl@openmailbox.org>
[-- Attachment #1: Type: text/plain, Size: 206 bytes --]
* gnu/packages/lxde.scm (libfm): New variable.
(libfm-extra): Inherit from it.
---
gnu/packages/lxde.scm | 33 ++++++++++++++++++++++++---------
1 file changed, 24 insertions(+), 9 deletions(-)
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0003-gnu-Add-libfm.patch --]
[-- Type: text/x-patch; name="0003-gnu-Add-libfm.patch", Size: 2716 bytes --]
diff --git a/gnu/packages/lxde.scm b/gnu/packages/lxde.scm
index 1d3a9ea..bd078ff 100644
--- a/gnu/packages/lxde.scm
+++ b/gnu/packages/lxde.scm
@@ -19,6 +19,7 @@
(define-module (gnu packages lxde)
#:use-module (gnu packages autotools)
#:use-module (gnu packages glib)
+ #:use-module (gnu packages gnome)
#:use-module (gnu packages gtk)
#:use-module (gnu packages pkg-config)
#:use-module (guix build-system gnu)
@@ -27,30 +28,44 @@
#:use-module (guix packages)
#:use-module (guix utils))
-(define-public libfm-extra
+(define-public libfm
(package
- (name "libfm-extra")
+ (name "libfm")
(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 ".tar.xz"))
+ "PCManFM%20%2B%20Libfm%20%28tarball%20release"
+ "%29/LibFM/" name "-" version ".tar.xz"))
(sha256
(base32
"1ygvw52262r3jp1f45m9cdpx5xgvd4rkyfszslfqvg2c99ig34n6"))))
(build-system gnu-build-system)
+ (inputs `(("glib" ,glib)
+ ("gtk+" ,gtk+-2)))
+ (native-inputs `(("intltool" ,intltool)
+ ("glib" ,glib "bin") ; for gtester
+ ("libtool" ,libtool)
+ ("menu-cache" ,menu-cache)
+ ("pkg-config" ,pkg-config)
+ ("vala" ,vala)))
+ (synopsis "File management support (core library)")
+ (description "LibFM provides file management functions built on top of
+Glib/GIO giving a higher-level API.")
+ (home-page "http://lxde.org")
+ (license license:gpl2+)))
+
+(define-public libfm-extra
+ (package (inherit libfm)
+ (name "libfm-extra")
(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 library
-which extends libfm.")
- (home-page "http://lxde.org")
- (license license:gpl2+)))
+ (description (string-append (package-description libfm) " This package
+contains standalone library which extends libfm."))))
(define-public lxappearance
(package
next prev parent reply other threads:[~2015-07-16 10:22 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-07-16 10:19 [PATCH 0/7] Add LXDE packages Mathieu Lirzin
2015-07-16 10:19 ` [PATCH 1/7] gnu: Add libfm-extra Mathieu Lirzin
2015-07-19 20:50 ` Ludovic Courtès
2015-07-16 10:19 ` [PATCH 2/7] gnu: Add menu-cache Mathieu Lirzin
2015-07-16 10:19 ` Mathieu Lirzin [this message]
2015-07-19 20:53 ` [PATCH 3/7] gnu: Add libfm Ludovic Courtès
2015-07-16 10:19 ` [PATCH 4/7] gnu: Add pcmanfm Mathieu Lirzin
2015-07-19 20:53 ` Ludovic Courtès
2015-07-16 10:19 ` [PATCH 5/7] gnu: Add lxterminal Mathieu Lirzin
2015-07-19 20:54 ` Ludovic Courtès
2015-07-16 10:19 ` [PATCH 6/7] gnu: Add lxtask Mathieu Lirzin
2015-07-19 20:57 ` Ludovic Courtès
2015-07-16 10:19 ` [PATCH 7/7] gnu: Add lxrandr Mathieu Lirzin
2015-07-19 21:00 ` Ludovic Courtès
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1437041960-5189-4-git-send-email-mthl@openmailbox.org \
--to=mthl@openmailbox.org \
--cc=guix-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).