diff options
Diffstat (limited to 'community/python-psycopg1')
-rwxr-xr-x | community/python-psycopg1/PKGBUILD | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/community/python-psycopg1/PKGBUILD b/community/python-psycopg1/PKGBUILD index 99cafbacb..de92e5214 100755 --- a/community/python-psycopg1/PKGBUILD +++ b/community/python-psycopg1/PKGBUILD @@ -1,20 +1,21 @@ -# $Id: PKGBUILD 60201 2011-12-07 14:41:34Z arodseth $ +# $Id: PKGBUILD 67660 2012-03-13 16:23:29Z lcarlier $ # Contributor: William Rea <sillywilly@gmail.com> pkgname=python-psycopg1 pkgver=1.1.21 -pkgrel=5 +pkgrel=6 pkgdesc="A PostgreSQL database adapter for Python" arch=('i686' 'x86_64') url="http://initd.org/projects/psycopg1" license=('GPL') depends=('python-egenix-mx-base' 'postgresql') -source=(http://initd.org/pub/software/psycopg/psycopg-$pkgver.tar.gz) +source=(http://initd.org/psycopg/tarballs/PSYCOPG-1-1/psycopg-$pkgver.tar.gz) md5sums=('a31f79f68d6d32898d6f24e11369a106') sha1sums=('02d8a8b5dd682306117896c7c63a9a1b518997b6') build() { cd "$srcdir/psycopg-$pkgver" + ./configure --prefix=/usr --with-python=/usr/bin/python2 \ --with-mxdatetime-includes=/usr/lib/python2.7/site-packages/mx/DateTime/mxDateTime sed -e 's:\(echo " install -m 555 $$mod \)\($(PY_MOD_DIR)\)\("; \\\):\1${DESTDIR}\2/$$mod\3:' \ @@ -25,5 +26,6 @@ build() { package() { cd "$srcdir/psycopg-$pkgver" + make DESTDIR="$pkgdir" install } |