[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 05/15] gnu: Add exo.
From: |
宋文武 |
Subject: |
[PATCH 05/15] gnu: Add exo. |
Date: |
Wed, 10 Dec 2014 20:02:26 +0800 |
* gnu/packages/xfce.scm (exo): New variable.
---
gnu/packages/xfce.scm | 33 ++++++++++++++++++++++++++++++++-
1 file changed, 32 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm
index 554548c..3954d1d 100644
--- a/gnu/packages/xfce.scm
+++ b/gnu/packages/xfce.scm
@@ -25,7 +25,8 @@
#:use-module (gnu packages glib)
#:use-module (gnu packages gtk)
#:use-module (gnu packages xorg)
- #:use-module (gnu packages xdisorg))
+ #:use-module (gnu packages xdisorg)
+ #:use-module (gnu packages web))
(define-public gtk-xfce-engine
(package
@@ -128,3 +129,33 @@ storage system.")
"Libxfce4ui is the replacement of the old libxfcegui4 library. It is used
to share commonly used Xfce widgets amoung the Xfce applications.")
(license lgpl2.0+)))
+
+(define-public exo
+ (package
+ (name "exo")
+ (version "0.8.0")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "http://archive.xfce.org/xfce/4.10/src/"
+ name "-" version ".tar.bz2"))
+ (sha256
+ (base32
+ "1c05pbagw14djv5zmqg34qfj40jav8sd10w2zi2wpzrad4qal8bf"))))
+ (build-system gnu-build-system)
+ (native-inputs
+ `(("pkg-config" ,pkg-config)
+ ("intltool" ,intltool)))
+ (propagated-inputs
+ `(("gtk+" ,gtk+-2)
+ ("libxfce4util" ,libxfce4util)))
+ (inputs
+ `(("libxfce4ui" ,libxfce4ui)
+ ("perl-uri" ,perl-uri)))
+ (home-page "http://www.xfce.org/")
+ (synopsis "Extension library for Xfce")
+ (description
+ "An extension library to Xfce, developed by os-cillation. While Xfce
comes
+with quite a few libraries that are targeted at desktop development, libexo is
+targeted at application development.")
+ ;; Libraries are under LGPLv2+, and programs under GPLv2+.
+ (license (list gpl2+ lgpl2.1+))))
--
2.1.2
- [PATCH 01/15] gnu: Add gtk-xfce-engine., 宋文武, 2014/12/10
- [PATCH 02/15] gnu: Add libxfce4util., 宋文武, 2014/12/10
- [PATCH 03/15] gnu: Add xfconf., 宋文武, 2014/12/10
- [PATCH 04/15] gnu: Add libxfce4ui., 宋文武, 2014/12/10
- [PATCH 05/15] gnu: Add exo.,
宋文武 <=
- [PATCH 06/15] gnu: Add garcon., 宋文武, 2014/12/10
- [PATCH 07/15] gnu: Add tumbler., 宋文武, 2014/12/10
- [PATCH 08/15] gnu: Add xfce4-panel., 宋文武, 2014/12/10
- [PATCH 09/15] gnu: Add xfce4-appfinder., 宋文武, 2014/12/10
- [PATCH 10/15] gnu: Add xfce4-session., 宋文武, 2014/12/10