wok view compiz-plugins-unsupported/receipt @ rev 22613

updated compiz packages ( -> 0.8.14)
author Hans-G?nter Theisgen
date Fri Jan 10 16:34:05 2020 +0100 (2020-01-10)
parents 984cad69029c
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="compiz-plugins-unsupported"
4 VERSION="0.8.14"
5 CATEGORY="x-window"
6 SHORT_DESC="Compiz extra plugins."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://github.com/compiz-reloaded"
11 SOURCE="compiz-plugins-experimental"
12 TARBALL="$SOURCE-$VERSION.tar.xz"
13 WGET_URL="$WEB_SITE/$SOURCE/releases/download/v$VERSION/$TARBALL"
15 DEPENDS="compiz-core compiz-libcompizconfig compiz-plugins-main
16 gtk+ libnotify librsvg xorg-libX11"
17 BUILD_DEPENDS="cmake compiz-bcop compiz-core-dev compiz-libcompizconfig-dev
18 compiz-plugins-extra compiz-plugins-extra-dev compiz-plugins-main-dev
19 file gtk+-dev intltool libnotify-dev librsvg-dev libtool libxslt-dev
20 mesa-dev startup-notification-dev util-linux-getopt util-linux-uuid-dev
21 xcb-util-dev xorg-dev"
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 ./configure --prefix=/usr &&
27 make &&
28 make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/lib
35 mkdir -p $fs/usr/share/locale
37 cp -a $install/usr/lib/compiz $fs/usr/lib
38 cp -a $install/usr/share/compiz $fs/usr/share
40 # Set list of wanted locales in LOCALE_PACK
41 . $WOK/slitaz-i18n/stuff/locale-pack.conf
43 # Copy message files in wanted languages, if available
44 for locale in $LOCALE_PACK
45 do
46 [ -d $install/usr/share/locale/$locale ] || continue
47 cp -a $install/usr/share/locale/$locale $fs/usr/share/locale
48 done
50 cd $fs/usr/lib/compiz; rm -f *.a *.la
51 }