15 lines
381 B
Plaintext
15 lines
381 B
Plaintext
# Description: Python bindings for PostgreSQL
|
|
# URL: http://initd.org/psycopg2/
|
|
# Maintainer: Matt Housh, jaeger at crux dot ninja
|
|
# Depends on: postgresql python-setuptools
|
|
|
|
name=psycopg2
|
|
version=2.8.3
|
|
release=1
|
|
source=(http://initd.org/${name%2}/tarballs/PSYCOPG-2-8/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
python setup.py install --root=$PKG --prefix=/usr
|
|
}
|