blob: 45ff301cb5713ce1817014ab0ce5c6778a4b9e21 (
plain)
1 # Description: Python bindings for PostgreSQL
2 # URL: https://www.psycopg.org/
3 # Maintainer: Matt Housh, jaeger at crux dot ninja
4 # Depends on: postgresql python3-setuptools
5
6 name=psycopg2
7 version=2.8.6
8 release=1
9 source=(http://initd.org/${name%2}/tarballs/PSYCOPG-2-8/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13 python3 setup.py install --root=$PKG --prefix=/usr
14 }
|