wok view psycopg2/receipt @ rev 22760

updated findutils (4.6.0 -> 4.7.0)
author Hans-G?nter Theisgen
date Fri Jan 24 17:10:12 2020 +0100 (2020-01-24)
parents 16df76e1fc6a
children 6104bce47bab
line source
1 # SliTaz package receipt.
3 PACKAGE="psycopg2"
4 VERSION="2.8.2"
5 CATEGORY="development"
6 SHORT_DESC="PostgreSQL database adapter for the Python."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="LGPL3"
9 WEB_SITE="http://initd.org/psycopg/"
11 Version=${VERSION%.*}
12 Version=${Version/./-}
13 TARBALL="$PACKAGE-$VERSION.tar.gz"
14 WGET_URL="${WEB_SITE}tarballs/PSYCOPG-$Version/$TARBALL"
16 DEPENDS="egenix-mx-base libpostgresqlclient python"
17 BUILD_DEPENDS="postgresql-dev python-dev python-setuptools"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 sed -i 's/,PSYCOPG_DEBUG$//' setup.cfg
23 python setup.py build &&
24 python setup.py install --root=$DESTDIR
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 cp -a $install/usr $fs
31 }