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

Up: grep to 2.10. It depends on pcre.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Feb 18 08:15:31 2012 -0500 (2012-02-18)
parents b7319995b37e
children d1c17bd2c2bc
line source
1 # SliTaz package receipt.
3 PACKAGE="gtk-xfce-engine"
4 VERSION="2.8.1"
5 CATEGORY="x-window"
6 SHORT_DESC="GTK engine for Xfce"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="gtk+"
9 BUILD_DEPENDS="gtk+-dev libffi"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.xfce.org/"
12 WGET_URL="http://archive.xfce.org/src/xfce/$PACKAGE/${VERSION%.*}/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure $CONFIGURE_ARGS && make && make install
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr
26 cp -a $_pkg/usr/lib $fs/usr
27 cp -a $_pkg/usr/share/ $fs/usr/
29 find $fs/usr/lib -name "*.la" -exec rm -f {} \;
30 }