wok view python-sqlalchemy/receipt @ rev 15695

Fix missing mkdir command
author Stanislas Leduc <shann@slitaz.org>
date Sat Dec 21 11:13:51 2013 +0100 (2013-12-21)
parents 0922197792e4
children 7390f8de9846
line source
1 # SliTaz package receipt.
3 PACKAGE="python-sqlalchemy"
4 SOURCE="SQLAlchemy"
5 VERSION="0.7.10"
6 CATEGORY="development"
7 SHORT_DESC="The Python SQL toolkit and Object Relational Mapper"
8 MAINTAINER="claudinei@slitaz.org"
9 LICENSE="MIT"
10 SUGGESTED="python-pysqlite"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WEB_SITE="http://www.sqlalchemy.org"
13 WGET_URL="https://pypi.python.org/packages/source/S/$SOURCE/$TARBALL"
15 DEPENDS="python"
16 BUILD_DEPENDS="wget python-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 python setup.py install --root=$DESTDIR
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 cp -a $install/usr $fs
29 }