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

Down rack (1.3.5)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Dec 09 20:33:37 2013 +0000 (2013-12-09)
parents d94859bd28b4
children 40fab26c175d
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"
pascal@15589 8 LICENSE="GPL2"
erjo@4138 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@4138 10 WEB_SITE="http://www.xfce.org/"
slaxemulator@9161 11 WGET_URL="http://archive.xfce.org/src/xfce/$PACKAGE/${VERSION%.*}/$TARBALL"
erjo@4138 12
pascal@15589 13 DEPENDS="gtk+"
pascal@15589 14 BUILD_DEPENDS="gtk+-dev libffi"
pascal@15589 15
erjo@4138 16 # Rules to configure and make the package.
erjo@4138 17 compile_rules()
erjo@4138 18 {
erjo@4138 19 cd $src
gokhlayeh@11573 20 ./configure $CONFIGURE_ARGS && make && make install
erjo@4138 21 }
erjo@4138 22
erjo@4138 23 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@4138 24 genpkg_rules()
erjo@4138 25 {
erjo@4138 26 mkdir -p $fs/usr
erjo@4138 27
pascal@15589 28 cp -a $install/usr/lib $fs/usr
pascal@15589 29 cp -a $install/usr/share/ $fs/usr/
erjo@4138 30
erjo@4138 31 find $fs/usr/lib -name "*.la" -exec rm -f {} \;
erjo@4138 32 }
erjo@4138 33