wok diff stoqdrivers/receipt @ rev 23044
gcc83-lib-base: add /usr/libgcc83/libstdc++.la (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Mar 05 12:33:26 2020 +0100 (2020-03-05) |
parents | 00fefa6ebb77 |
children | 2045eca96f37 |
line diff
1.1 --- a/stoqdrivers/receipt Thu Feb 17 01:45:49 2011 +0100 1.2 +++ b/stoqdrivers/receipt Thu Mar 05 12:33:26 2020 +0100 1.3 @@ -5,13 +5,15 @@ 1.4 CATEGORY="development" 1.5 SHORT_DESC="Useful drivers for Stoq and retail systems" 1.6 MAINTAINER="claudinei@slitaz.org" 1.7 -DEPENDS="python python-kiwi python-serial zopeinterface" 1.8 -BUILD_DEPENDS="python python-dev python-kiwi python-serial zopeinterface" 1.9 +LICENSE="LGPL2.1" 1.10 SUGGESTED="stoq" 1.11 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.12 WEB_SITE="http://www.stoq.com.br" 1.13 WGET_URL="http://download.stoq.com.br/sources/0.9.11/$TARBALL" 1.14 1.15 +DEPENDS="python python-kiwi python-serial zopeinterface" 1.16 +BUILD_DEPENDS="python python-dev python-kiwi python-serial zopeinterface" 1.17 + 1.18 # Rules to configure and make the package. 1.19 compile_rules() 1.20 { 1.21 @@ -22,13 +24,12 @@ 1.22 # Rules to gen a SliTaz package suitable for Tazpkg. 1.23 genpkg_rules() 1.24 { 1.25 - LOCALEDIR="$_pkg/usr/share/locale" 1.26 - for file in `find $_pkg | grep 'pyc$'`; do 1.27 + LOCALEDIR="$install/usr/share/locale" 1.28 + for file in `find $install | grep 'pyc$'`; do 1.29 rm $file 1.30 done 1.31 mkdir -p $fs/usr/share/locale/pt 1.32 - cp -a $_pkg/usr/lib $fs/usr 1.33 - cp -a $_pkg/usr/share $fs/usr 1.34 + cp -a $install/usr/lib $fs/usr 1.35 + cp -a $install/usr/share $fs/usr 1.36 cp -a $LOCALEDIR/pt_BR/LC_MESSAGES $fs/usr/share/locale/pt 1.37 } 1.38 -