wok view clearlooks/receipt @ rev 6093

libarchive: fix BUILD_DEPENDS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Aug 30 15:45:46 2010 +0200 (2010-08-30)
parents 74cb2409ce26
children eb8067417980
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+ xorg-libXdamage"
10 BUILD_DEPENDS="pkg-config file gtk+-dev"
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 }