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

otf-gfs: typos
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 15 16:19:38 2013 +0000 (2013-08-15)
parents b7319995b37e
children d1c17bd2c2bc
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+"
pascal@11582 9 BUILD_DEPENDS="gtk+-dev libffi"
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