gnu: Add menu-cache.
[jackhill/guix/guix.git] / gnu / packages / lxde.scm
CommitLineData
889e57f4
ML
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2015 Mathieu Lirzin <mthl@openmailbox.org>
3;;;
4;;; This file is part of GNU Guix.
5;;;
6;;; GNU Guix is free software; you can redistribute it and/or modify it
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
11;;; GNU Guix is distributed in the hope that it will be useful, but
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19(define-module (gnu packages lxde)
83365461 20 #:use-module (gnu packages autotools)
889e57f4
ML
21 #:use-module (gnu packages glib)
22 #:use-module (gnu packages gtk)
23 #:use-module (gnu packages pkg-config)
24 #:use-module (guix build-system gnu)
25 #:use-module (guix download)
26 #:use-module ((guix licenses) #:prefix license:)
6e6b5344
ML
27 #:use-module (guix packages)
28 #:use-module (guix utils))
889e57f4 29
83365461
ML
30(define-public libfm-extra
31 (package
32 (name "libfm-extra")
33 (version "1.2.3")
34 (source (origin
35 (method url-fetch)
36 (uri (string-append "mirror://sourceforge/project/pcmanfm/"
37 "PCManFM%20%2B%20Libfm%20%28tarball%20"
38 "release%29/LibFM/libfm-" version ".tar.xz"))
39 (sha256
40 (base32
41 "1ygvw52262r3jp1f45m9cdpx5xgvd4rkyfszslfqvg2c99ig34n6"))))
42 (build-system gnu-build-system)
43 (arguments '(#:configure-flags '("--with-extra-only")))
44 (inputs `(("glib" ,glib)))
45 (native-inputs `(("intltool" ,intltool)
46 ("libtool" ,libtool)
47 ("pkg-config" ,pkg-config)))
48 (synopsis "File management support (extra library)")
49 (description "LibFM provides file management functions built on top of
50Glib/GIO giving a higher-level API. This package contains standalone library
51which extends libfm.")
52 (home-page "http://lxde.org")
53 (license license:gpl2+)))
54
889e57f4
ML
55(define-public lxappearance
56 (package
57 (name "lxappearance")
58 (version "0.6.1")
59 (source (origin
60 (method url-fetch)
3ab98da1 61 (uri (string-append "mirror://sourceforge/project/lxde/"
889e57f4
ML
62 "LXAppearance/" name "-" version ".tar.xz"))
63 (sha256
64 (base32
65 "1phnv1b2jdj2vlibjyc9z01izcf3k5zxj8glsaf0i3vh77zqmqq9"))))
66 (build-system gnu-build-system)
67 (inputs `(("gtk+" ,gtk+-2)))
68 (native-inputs `(("intltool" ,intltool)
69 ("pkg-config" ,pkg-config)))
70 (synopsis "LXDE GTK+ theme switcher")
71 (description "LXAppearance is a desktop-independent GTK+ theme switcher
72able to change themes, icons, and fonts used by GTK+ applications.")
73 (home-page "http://lxde.org")
74 (license license:gpl2+)))
75
6e6b5344
ML
76(define-public menu-cache
77 (package
78 (name "menu-cache")
79 (version "1.0.0")
80 (source (origin
81 (method url-fetch)
82 (uri (string-append "mirror://sourceforge/project/lxde/" name "/"
83 (version-major+minor version) "/"
84 name "-" version ".tar.xz"))
85 (sha256
86 (base32
87 "1bws84fiwk3anp30hcr0lw1xw5cgp44x5ik2yv2ijcgxpcvz8zgz"))))
88 (build-system gnu-build-system)
89 (inputs `(("glib" ,glib)
90 ("libfm" ,libfm-extra)))
91 (native-inputs `(("pkg-config" ,pkg-config)))
92 (synopsis "LXDE implementation of the freedesktop menu's cache")
93 (description "Menu-cache is a library creating and utilizing caches to
94speed up the access to freedesktop.org defined application menus.")
95 (home-page "http://lxde.org")
96 (license license:lgpl2.1+)))
97
889e57f4 98;;; lxde.scm ends here