wok view compiz-libcompizconfig/receipt @ rev 12140

clutter-gtk: Fixed again. It needs gtk-doc and a autoreconf -i inorder to not get 'clutter/clutter.h: No such file or directory' error.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Mar 13 22:22:35 2012 -0500 (2012-03-13)
parents
children 569abf072b71
line source
1 # SliTaz package receipt.
3 PACKAGE="compiz-libcompizconfig"
4 VERSION="0.9.4"
5 CATEGORY="x-window"
6 SHORT_DESC="Compiz configuration library."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="compiz-core"
9 BUILD_DEPENDS="$DEPENDS compiz-core-dev cmake glibc-dev \
10 libxslt-dev glibmm-dev startup-notification-dev libboost-dev"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.compiz.org/"
13 WGET_URL="http://releases.compiz.org/$VERSION/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 mkdir build && cd build
20 cmake \
21 -DCMAKE_INSTALL_PREFIX="/usr" \
22 -DCOMPIZ_DESTDIR="../../install" .. &&
23 make && make install &&
24 make findcompizconfig_install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib $fs/usr/share
31 cp -a $_pkg/etc $fs
32 cp -a $_pkg/usr/lib/compiz* $fs/usr/lib
33 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
34 }