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

some fixes to previous commits
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Tue Aug 05 15:58:00 2014 +0200 (2014-08-05)
parents
children d3eb5f4b53ea
line source
1 # SliTaz package receipt.
3 PACKAGE="compiz-plugins-unsupported"
4 VERSION="0.9.4"
5 CATEGORY="x-window"
6 SHORT_DESC="Compiz unsupported plugins."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.compiz.org/"
11 WGET_URL="http://releases.compiz.org/0.9.4/$TARBALL"
13 DEPENDS="xorg-libX11 compiz-core compiz-libcompizconfig gtk+ librsvg \
14 compiz-plugins-main"
15 BUILD_DEPENDS="xorg-dev compiz-core-dev compiz-libcompizconfig-dev cmake \
16 glibmm-dev libxslt-dev startup-notification-dev libboost-dev mesa-dev \
17 gtk+-dev libboost-serialization-dev intltool librsvg-dev compiz-plugins-main-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 cd $src
23 mkdir build && cd build &&
24 cmake \
25 -DCMAKE_INSTALL_PREFIX="/usr" \
26 -DCOMPIZ_DESTDIR="../../install" \
27 -DCOMPIZ_PLUGIN_INSTALL_TYPE="compiz" .. &&
28 make && make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/lib $fs/usr/share
35 cp -a $install/usr/lib/compiz $fs/usr/lib
36 cp -a $install/usr/share/compiz $fs/usr/share
37 }