wok view clearlooks/receipt @ rev 5093

improve rp-pppoe receipt
author Rohit Joshi <jozee@slitaz.org>
date Mon Mar 15 14:12:19 2010 +0000 (2010-03-15)
parents 2407153fdf77
children cbeec8826bda
line source
1 # SliTaz package receipt.
3 PACKAGE="clearlooks"
4 VERSION="2.18.5"
5 SOURCE="gtk-engines"
6 CATEGORY="x-window"
7 SHORT_DESC="Clearlooks GTK+ theme."
8 MAINTAINER="pankso@slitaz.org"
9 TARBALL="$SOURCE-$VERSION.tar.bz2"
10 DEPENDS="gtk+ xorg-libXdamage"
11 BUILD_DEPENDS="pkg-config file gtk+-dev"
12 WEB_SITE="http://live.gnome.org/GnomeArt"
13 #WEB_SITE="http://clearlooks.sourceforge.net/"
14 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$SOURCE/2.18/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 --enable-animation \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$PWD/_pkg install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/share/$SOURCE \
34 $fs/usr/share/themes \
35 $fs/usr/lib/gtk-2.0/2.10.0/engines
36 cp -a $_pkg/usr/share/$SOURCE/clearlooks.xml $fs/usr/share/$SOURCE
37 cp -a $_pkg/usr/share/themes/Clearlooks $fs/usr/share/themes
38 cp -a $_pkg/usr/lib/gtk-2.0/2.10.0/engines/libclearlooks.so \
39 $fs/usr/lib/gtk-2.0/2.10.0/engines
40 }