[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/06: gnu: Add clutter.
From: |
Mark H. Weaver |
Subject: |
03/06: gnu: Add clutter. |
Date: |
Tue, 23 Jun 2015 05:05:13 +0000 |
mhw pushed a commit to branch master
in repository guix.
commit fb182b8a447a4a6078ff4e9aecae99b0f4c8e5cf
Author: Mark H Weaver <address@hidden>
Date: Sat Jun 20 17:48:11 2015 -0400
gnu: Add clutter.
* gnu/packages/gnome.scm (clutter): New variable.
---
gnu/packages/gnome.scm | 47 +++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 47 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 6482973..e5c920b 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -66,6 +66,7 @@
#:use-module (gnu packages ssh)
#:use-module (gnu packages xml)
#:use-module (gnu packages gl)
+ #:use-module (gnu packages qt) ; for libxkbcommon
#:use-module (gnu packages compression)
#:use-module (gnu packages texlive)
#:use-module (gnu packages web)
@@ -2550,3 +2551,49 @@ without stepping on each others toes.")
license:bsd-3 ; cogl/cogl-point-in-poly.c
license:sgifreeb2.0 ; cogl-path/tesselator/
license:asl2.0)))) ; examples/android/
+
+(define-public clutter
+ (package
+ (name "clutter")
+ (version "1.22.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://gnome/sources/" name "/"
+ (version-major+minor version) "/"
+ name "-" version ".tar.xz"))
+ (sha256
+ (base32
+ "1b0ikh9q3c3qnny3kbvhqih35449q8ajcbh7zkm8k3kykwfx4scf"))))
+ (build-system gnu-build-system)
+ (native-inputs
+ `(("glib:bin" ,glib "bin") ; for glib-genmarshal
+ ("gobject-introspection" ,gobject-introspection)
+ ("pkg-config" ,pkg-config)
+ ("xsltproc" ,libxslt)))
+ (propagated-inputs
+ `(("cogl" ,cogl)
+ ("cairo" ,cairo)
+ ("atk" ,atk)
+ ("gtk+" ,gtk+)
+ ("json-glib" ,json-glib)
+ ("glib" ,glib)
+ ("libxcomposite" ,libxcomposite)
+ ("libxdamage" ,libxdamage)
+ ("libxext" ,libxext)
+ ("xinput" ,xinput)))
+ (inputs
+ `(("libxkbcommon" ,libxkbcommon)
+ ("udev" ,eudev)))
+ (arguments
+ `(#:configure-flags '("--enable-x11-backend=yes")
+ ;; XXX FIXME: Get test suite working. It would probably fail in the
+ ;; same way the cogl tests fail, since clutter is based on cogl.
+ #:tests? #f))
+ (home-page "http://www.clutter-project.org";)
+ (synopsis "Open GL based interactive canvas library")
+ (description
+ "Clutter is an Open GL based interactive canvas library, designed for
+creating fast, mainly 2D single window applications such as media box UIs,
+presentations, kiosk style applications and so on.")
+ (license license:lgpl2.0+)))
- branch master updated (22ad391 -> 607a04a), Mark H. Weaver, 2015/06/23
- 01/06: licenses: Add the SGI Free Software License B, version 2.0., Mark H. Weaver, 2015/06/23
- 04/06: gnu: Add clutter-gtk., Mark H. Weaver, 2015/06/23
- 03/06: gnu: Add clutter.,
Mark H. Weaver <=
- 05/06: gnu: Add clutter-gst., Mark H. Weaver, 2015/06/23
- 02/06: gnu: Add cogl., Mark H. Weaver, 2015/06/23
- 06/06: gnu: Add gom., Mark H. Weaver, 2015/06/23