16 lines
398 B
Plaintext
16 lines
398 B
Plaintext
# Description: Python bindings for PostgreSQL
|
|
# URL: http://www.initd.org/
|
|
# Maintainer: Lucas Hazel, lucas at die dot net dot au
|
|
# Depends on: python postgresql
|
|
|
|
name=psycopg2
|
|
version=2.0.8
|
|
release=1
|
|
source=(http://www.initd.org/pub/software/psycopg/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
python setup.py install --root=$PKG --prefix=/usr
|
|
find $PKG -name '*.egg-info' | xargs rm
|
|
}
|