[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 07/15] gnu: Add tumbler.
From: |
宋文武 |
Subject: |
[PATCH 07/15] gnu: Add tumbler. |
Date: |
Wed, 10 Dec 2014 20:02:28 +0800 |
* gnu/packages/xfce.scm (tumbler): New variable.
---
gnu/packages/xfce.scm | 41 ++++++++++++++++++++++++++++++++++++++++-
1 file changed, 40 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm
index 01e86aa..3200993 100644
--- a/gnu/packages/xfce.scm
+++ b/gnu/packages/xfce.scm
@@ -26,7 +26,11 @@
#:use-module (gnu packages gtk)
#:use-module (gnu packages xorg)
#:use-module (gnu packages xdisorg)
- #:use-module (gnu packages web))
+ #:use-module (gnu packages web)
+ #:use-module (gnu packages image)
+ #:use-module (gnu packages gnome)
+ #:use-module (gnu packages pdf)
+ #:use-module (gnu packages gstreamer))
(define-public gtk-xfce-engine
(package
@@ -186,3 +190,38 @@ GLib and GIO. It was started as a complete rewrite of the
former Xfce menu
library called libxfce4menu, which, in contrast to garcon, was lacking menu
merging features essential for loading menus modified with menu editors.")
(license lgpl2.0+)))
+
+(define-public tumbler
+ (package
+ (name "tumbler")
+ (version "0.1.25")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "http://archive.xfce.org/xfce/4.10/src/"
+ name "-" version ".tar.bz2"))
+ (sha256
+ (base32
+ "0ijm04vm75gmhyyzrlqdr6vzchr01hlajcm84lm6j64cim8dxm82"))))
+ (build-system gnu-build-system)
+ (native-inputs
+ `(("pkg-config" ,pkg-config)
+ ("intltool" ,intltool)
+ ("glib:bin" ,glib "bin") ; need glib-genmarshal
+ ("dbus-glib" ,dbus-glib))) ; need dbus-binding-tool
+ (propagated-inputs
+ `(("glib" ,glib)))
+ (inputs
+ `(("dbus" ,dbus)
+ ("gdk-pixbuf" ,gdk-pixbuf)
+ ("freetype" ,freetype)
+ ("libjpeg" ,libjpeg)
+ ("libgsf" ,libgsf)
+ ("poppler" ,poppler)
+ ("gstreamer" ,gstreamer-0.10)))
+ (home-page "http://www.xfce.org/")
+ (synopsis "D-Bus service for applications to request thumbnails")
+ (description
+ "Tumbler is a D-Bus service for applications to request thumbnails for
+various URI schemes and MIME types. It is an implementation of the thumbnail
+management D-Bus specification.")
+ (license gpl2+)))
--
2.1.2
- Re: [PATCH 02/15] gnu: Add libxfce4util., (continued)
- [PATCH 03/15] gnu: Add xfconf., 宋文武, 2014/12/10
- [PATCH 04/15] gnu: Add libxfce4ui., 宋文武, 2014/12/10
- [PATCH 05/15] gnu: Add exo., 宋文武, 2014/12/10
- [PATCH 06/15] gnu: Add garcon., 宋文武, 2014/12/10
- [PATCH 07/15] gnu: Add tumbler.,
宋文武 <=
- [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
- [PATCH 11/15] gnu: Add xfce4-settings., 宋文武, 2014/12/10