wok view stoq/receipt @ rev 11157

Up: rtorrent to 0.8.9.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Nov 02 06:41:00 2011 +0000 (2011-11-02)
parents 822e03f5288d
children c4f226b02549
line source
1 # SliTaz package receipt.
3 PACKAGE="stoq"
4 VERSION="0.9.12"
5 CATEGORY="office"
6 SHORT_DESC="Stoq is a suite of Retail Management System applications."
7 MAINTAINER="claudinei@slitaz.org"
8 DEPENDS="python pygtk postgresql psycopg2 zopeinterface python-pil \
9 python-reportlab stoqlib stoqdrivers python-kiwi python-gazpacho"
10 BUILD_DEPENDS="python python-dev pygtk python-kiwi stoqlib"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WEB_SITE="http://www.stoq.com.br"
13 WGET_URL="http://download.stoq.com.br/sources/$VERSION/$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 $fs/etc
30 cp -a $_pkg/etc/stoq $fs/etc
31 cp -a $_pkg/usr/bin $fs/usr
32 cp -a $_pkg/usr/lib $fs/usr
33 cp -a $_pkg/usr/share $fs/usr
34 cp -a $LOCALEDIR/pt_BR/LC_MESSAGES $fs/usr/share/locale/pt
35 }