wok-next view clutter/receipt @ rev 20388
Up clutter (v2), cookutils (1016), get-rar (171201)
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Fri Dec 01 15:14:07 2017 +0200 (2017-12-01) |
parents | bf4cf6b0f742 |
children | ad393fe0cb78 |
line source
1 # SliTaz package receipt v2.
3 PACKAGE="clutter"
4 VERSION="1.6.20"
5 CATEGORY="x-window"
6 SHORT_DESC="Animated graphical user interfaces library"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="http://clutter-project.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="http://www.clutter-project.org/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
14 BUILD_DEPENDS="atk-dev glib-dev gdk-pixbuf-dev cairo-dev pango-dev \
15 json-glib-dev mesa-dev libdrm-dev xorg-libXcomposite-dev \
16 gobject-introspection-dev pkg-config libxml2-dev expat-dev xorg-libxshmfence-dev"
17 SPLIT="clutter-dev"
19 compile_rules() {
20 ./configure \
21 --enable-introspection \
22 $CONFIGURE_ARGS &&
23 make && make install || return 1
25 ln -s clutter-1.0.pc $fs/usr/lib/pkgconfig/clutter.pc
26 }
28 genpkg_rules() {
29 case $PACKAGE in
30 clutter)
31 copy @std
32 DEPENDS="atk glib gdk-pixbuf cairo pango json-glib mesa libdrm \
33 xorg-libXcomposite"
34 SUGGESTED="nvidia"
35 ;;
36 *-dev)
37 copy @dev
38 DEPENDS="clutter mesa-dev json-glib-dev xorg-libXcomposite-dev"
39 ;;
40 esac
41 }