wok view clearlooks/receipt @ rev 1511

Update some BUILD_DEPENDS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Oct 05 23:16:15 2008 +0000 (2008-10-05)
parents c1ff74d9b6f4
children 52dc4b48ed81
line source
1 # SliTaz package receipt.
3 PACKAGE="clearlooks"
4 VERSION="0.6.2"
5 CATEGORY="x-window"
6 SHORT_DESC="Clearlooks GTK+ theme."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 DEPENDS="gtk+"
10 BUILD_DEPENDS="pkg-config file gtk+"
11 WEB_SITE="http://clearlooks.sourceforge.net/"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 cp -a $_pkg/* $fs
31 rm $fs/usr/lib/gtk-2.0/2.10.0/engines/*.la
32 rm -rf $fs/usr/share/icons
33 }