wok view stoqdrivers/receipt @ rev 8680

up stoq/stoqlib 0.9.12 & add some fix
author Antoine Bodin <gokhlayeh@slitaz.org>
date Thu Feb 17 01:45:49 2011 +0100 (2011-02-17)
parents 822e03f5288d
children c4f226b02549
line source
1 # SliTaz package receipt.
3 PACKAGE="stoqdrivers"
4 VERSION="0.9.8.2"
5 CATEGORY="development"
6 SHORT_DESC="Useful drivers for Stoq and retail systems"
7 MAINTAINER="claudinei@slitaz.org"
8 DEPENDS="python python-kiwi python-serial zopeinterface"
9 BUILD_DEPENDS="python python-dev python-kiwi python-serial zopeinterface"
10 SUGGESTED="stoq"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WEB_SITE="http://www.stoq.com.br"
13 WGET_URL="http://download.stoq.com.br/sources/0.9.11/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 python setup.py install --root=$DESTDIR
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 LOCALEDIR="$_pkg/usr/share/locale"
26 for file in `find $_pkg | grep 'pyc$'`; do
27 rm $file
28 done
29 mkdir -p $fs/usr/share/locale/pt
30 cp -a $_pkg/usr/lib $fs/usr
31 cp -a $_pkg/usr/share $fs/usr
32 cp -a $LOCALEDIR/pt_BR/LC_MESSAGES $fs/usr/share/locale/pt
33 }