wok-next diff yasr/receipt @ rev 16229
fpc-bootstrap: prepare multi arch
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Apr 01 08:34:15 2014 +0000 (2014-04-01) |
parents | b7319995b37e |
children | 9e01bc6321ea |
line diff
1.1 --- a/yasr/receipt Mon Jan 02 23:06:18 2012 +0100 1.2 +++ b/yasr/receipt Tue Apr 01 08:34:15 2014 +0000 1.3 @@ -5,11 +5,13 @@ 1.4 CATEGORY="utilities" 1.5 SHORT_DESC="General purpose console screen reader." 1.6 MAINTAINER="paul@slitaz.org" 1.7 -DEPENDS="speech-dispatcher espeak bash" 1.8 +LICENSE="GPL2" 1.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.10 WEB_SITE="http://yasr.sourceforge.net/" 1.11 WGET_URL="http://prdownloads.sourceforge.net/yasr/$TARBALL" 1.12 1.13 +DEPENDS="speech-dispatcher espeak bash" 1.14 + 1.15 # Rules to configure and make the package. 1.16 compile_rules() 1.17 { 1.18 @@ -18,15 +20,15 @@ 1.19 cd ../ 1.20 ./configure \ 1.21 --prefix=/usr $CONFIGURE_ARGS && 1.22 - make && make DESTDIR=$PWD/_pkg install 1.23 + make && make DESTDIR=$DESTDIR install 1.24 } 1.25 1.26 # Rules to gen a SliTaz package suitable for Tazpkg. 1.27 genpkg_rules() 1.28 { 1.29 mkdir -p $fs/usr/share 1.30 - cp -a $_pkg/usr/bin $fs/usr 1.31 - cp -a $_pkg/usr/share/yasr $fs/usr/share 1.32 + cp -a $install/usr/bin $fs/usr 1.33 + cp -a $install/usr/share/yasr $fs/usr/share 1.34 } 1.35 1.36 post_install()