wok view python-formalchemy/receipt @ rev 3839

tazwok: mv desktop file to tazwok src
author Christophe Lincoln <pankso@slitaz.org>
date Fri Aug 07 12:00:01 2009 +0200 (2009-08-07)
parents
children c3fc45ddf5e1
line source
1 # SliTaz package receipt.
3 PACKAGE="python-formalchemy"
4 SOURCE="FormAlchemy"
5 VERSION="1.2"
6 CATEGORY="development"
7 SHORT_DESC="Auto-generated, customizable HTML output form fields from SQLAlchemy mapped classes."
8 MAINTAINER="claudinei@slitaz.org"
9 DEPENDS="python python-sqlalchemy"
10 BUILD_DEPENDS="python python-dev"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WEB_SITE="http://code.google.com/p/formalchemy"
13 WGET_URL="http://formalchemy.googlecode.com/files/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 python setup.py install --root=$PWD/_pkg
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 for file in `find $_pkg | grep 'pyc$'`; do
26 rm $file
27 done
28 mkdir -p $fs/usr
29 cp -a $_pkg/usr $fs
30 }