wok annotate gtk-xfce-engine/receipt @ rev 11573

Fix build/host configure option in recipes which was not detecting the right ones well + tiny fixes.
author Antoine Bodin <gokhlayeh@slitaz.org>
date Mon Jan 02 23:06:18 2012 +0100 (2012-01-02)
parents 7eb5d6d32d7d
children d94859bd28b4
rev   line source
erjo@4138 1 # SliTaz package receipt.
erjo@4138 2
erjo@4138 3 PACKAGE="gtk-xfce-engine"
slaxemulator@9161 4 VERSION="2.8.1"
erjo@4138 5 CATEGORY="x-window"
erjo@4138 6 SHORT_DESC="GTK engine for Xfce"
erjo@4138 7 MAINTAINER="erjo@slitaz.org"
erjo@4138 8 DEPENDS="gtk+"
erjo@4138 9 BUILD_DEPENDS="gtk+-dev"
erjo@4138 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@4138 11 WEB_SITE="http://www.xfce.org/"
slaxemulator@9161 12 WGET_URL="http://archive.xfce.org/src/xfce/$PACKAGE/${VERSION%.*}/$TARBALL"
erjo@4138 13
erjo@4138 14 # Rules to configure and make the package.
erjo@4138 15 compile_rules()
erjo@4138 16 {
erjo@4138 17 cd $src
gokhlayeh@11573 18 ./configure $CONFIGURE_ARGS && make && make install
erjo@4138 19 }
erjo@4138 20
erjo@4138 21 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@4138 22 genpkg_rules()
erjo@4138 23 {
erjo@4138 24 mkdir -p $fs/usr
erjo@4138 25
erjo@4138 26 cp -a $_pkg/usr/lib $fs/usr
erjo@4138 27 cp -a $_pkg/usr/share/ $fs/usr/
erjo@4138 28
erjo@4138 29 find $fs/usr/lib -name "*.la" -exec rm -f {} \;
erjo@4138 30 }
erjo@4138 31