wok view gtk-xfce-engine/receipt @ rev 4138

Add: gtk-xfce-engine
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sun Sep 20 13:32:33 2009 +0000 (2009-09-20)
parents
children 0dfe9e7759d5
line source
1 # SliTaz package receipt.
3 PACKAGE="gtk-xfce-engine"
4 VERSION="2.6.0"
5 CATEGORY="x-window"
6 SHORT_DESC="GTK engine for Xfce"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="gtk+"
9 BUILD_DEPENDS="gtk+-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.xfce.org/"
12 WGET_URL="http://www.p0llux.be/xfce/xfce-4.6.1/src/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --infodir=/usr/share/info \
19 --mandir=/usr/share/man $CONFIGURE_ARGS && \
20 make && make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
28 cp -a $_pkg/usr/lib $fs/usr
29 cp -a $_pkg/usr/share/ $fs/usr/
31 find $fs/usr/lib -name "*.la" -exec rm -f {} \;
32 }