wok view python-sqlalchemy/receipt @ rev 24297

updated swig (4.0.1 -> 4.0.2)
author Hans-G?nter Theisgen
date Sat Jan 15 13:48:03 2022 +0100 (2022-01-15)
parents 07188010ed93
children 076f424196b2
line source
1 # SliTaz package receipt.
3 PACKAGE="python-sqlalchemy"
4 VERSION="1.3.15"
5 CATEGORY="development"
6 SHORT_DESC="The Python SQL toolkit and Object Relational Mapper."
7 MAINTAINER="claudinei@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://pypi.org/project/SQLAlchemy/"
11 SOURCE="SQLAlchemy"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL"
15 SUGGESTED="python-pysqlite"
16 DEPENDS="python"
17 BUILD_DEPENDS="python python-dev python-setuptools"
19 current_version()
20 {
21 wget -O - $WEB_SITE 2>/dev/null | sed '/, version /!d;s|.*version ||;s|<.*||'
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 python setup.py install --root=$DESTDIR
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 cp -a $install/usr $fs
34 }