wok-stable annotate gtk-xfce-engine/receipt @ rev 7039
Fixed typo in lyx build depends.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Sun Oct 31 19:45:29 2010 +0000 (2010-10-31) |
parents | 165b342c8877 |
children | 7eb5d6d32d7d |
rev | line source |
---|---|
erjo@4138 | 1 # SliTaz package receipt. |
erjo@4138 | 2 |
erjo@4138 | 3 PACKAGE="gtk-xfce-engine" |
erjo@4138 | 4 VERSION="2.6.0" |
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/" |
pascal@4231 | 12 WGET_URL="$WEB_SITE/archive/xfce/4.6.1/src/$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 |
erjo@4138 | 18 ./configure --prefix=/usr --infodir=/usr/share/info \ |
erjo@4138 | 19 --mandir=/usr/share/man $CONFIGURE_ARGS && \ |
erjo@4138 | 20 make && make DESTDIR=$PWD/_pkg 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 |
erjo@4138 | 28 cp -a $_pkg/usr/lib $fs/usr |
erjo@4138 | 29 cp -a $_pkg/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 |