wok-stable annotate psycopg/receipt @ rev 6339
wbarconf : add pt_BR translation (thanks blconde)
author | Antoine Bodin <gokhlayeh@mailoo.org> |
---|---|
date | Sun Sep 19 13:33:36 2010 +0200 (2010-09-19) |
parents | 5206f65a4f05 |
children | 80568f5b4b45 |
rev | line source |
---|---|
pascal@1236 | 1 # SliTaz package receipt. |
pascal@1236 | 2 |
pascal@1236 | 3 PACKAGE="psycopg" |
pascal@1236 | 4 VERSION="1.1.21" |
pascal@1236 | 5 CATEGORY="system-tools" |
pascal@1236 | 6 SHORT_DESC="PostgreSQL database adapter for the Python." |
pascal@1236 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@1236 | 8 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@1236 | 9 WEB_SITE="http://initd.org/" |
pascal@1236 | 10 WGET_URL="${WEB_SITE}pub/software/$PACKAGE/$TARBALL" |
pascal@2456 | 11 DEPENDS="python egenix-mx-base libpostgresqlclient" |
pascal@1514 | 12 BUILD_DEPENDS="python python-dev egenix-mx-base postgresql-dev libpostgresqlclient" |
pascal@1236 | 13 |
pascal@1236 | 14 # Rules to configure and make the package. |
pascal@1236 | 15 compile_rules() |
pascal@1236 | 16 { |
pascal@1236 | 17 cd $src |
pascal@1236 | 18 python=python$(python --version 2>&1 | awk '{ print substr($2,0,3) }') |
pascal@1491 | 19 mkdir -p _pkg/usr/lib/$python/site-packages |
pascal@1236 | 20 ./configure --prefix=/usr --infodir=/usr/share/info \ |
pascal@1236 | 21 --with-mxdatetime-includes=/usr/lib/$python/site-packages/mx/DateTime/mxDateTime \ |
pascal@1514 | 22 --with-postgres-libraries=/usr/lib/postgresql \ |
pascal@1491 | 23 --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@1491 | 24 make && |
pascal@1236 | 25 install -m 555 ./psycopgmodule.so _pkg/usr/lib/$python/site-packages |
pascal@1236 | 26 } |
pascal@1236 | 27 |
pascal@1236 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1236 | 29 genpkg_rules() |
pascal@1236 | 30 { |
pascal@1259 | 31 mkdir -p $fs/usr/lib/ |
pascal@1236 | 32 cp -a $_pkg/usr $fs |
pascal@1236 | 33 } |
pascal@1236 | 34 |