diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2012-02-26 01:16:44 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2012-02-26 01:16:44 -0300 |
commit | 92155342158c2dbcc0c840325d63d1742d3583ec (patch) | |
tree | f0900a2867d221c79742e7a06ca4244a21abf8f3 /extra/pypgsql | |
parent | 78fa3fcb824603de4b7bc558a423edca6bc18836 (diff) | |
parent | e4a5730eb358cb0d78bc022204ddccac068c2bf2 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community/astyle/PKGBUILD
community/gavl/PKGBUILD
community/lmms/PKGBUILD
community/portaudio/PKGBUILD
community/redshift/PKGBUILD
extra/gnutls/PKGBUILD
extra/libglade/PKGBUILD
extra/libgnome/PKGBUILD
extra/orbit2/PKGBUILD
extra/pypgsql/PKGBUILD
extra/vlc/PKGBUILD
extra/xorg-appres/PKGBUILD
extra/xorg-xdriinfo/PKGBUILD
extra/xorg-xfs/PKGBUILD
extra/xorg-xgamma/PKGBUILD
extra/xorg-xhost/PKGBUILD
extra/xorg-xkbevd/PKGBUILD
extra/xorg-xkbutils/PKGBUILD
extra/xorg-xload/PKGBUILD
extra/xorg-xlogo/PKGBUILD
extra/xorg-xlsatoms/PKGBUILD
extra/xorg-xlsclients/PKGBUILD
extra/xorg-xmag/PKGBUILD
extra/xorg-xmodmap/PKGBUILD
extra/xorg-xrdb/PKGBUILD
extra/xorg-xrefresh/PKGBUILD
extra/xorg-xsetroot/PKGBUILD
extra/xorg-xvidtune/PKGBUILD
extra/xorg-xwd/PKGBUILD
extra/xorg-xwud/PKGBUILD
extra/zile/PKGBUILD
multilib/wine/PKGBUILD
testing/xf86-video-intel/PKGBUILD
Diffstat (limited to 'extra/pypgsql')
-rw-r--r-- | extra/pypgsql/PKGBUILD | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/extra/pypgsql/PKGBUILD b/extra/pypgsql/PKGBUILD index f716a4ca3..374b2d6aa 100644 --- a/extra/pypgsql/PKGBUILD +++ b/extra/pypgsql/PKGBUILD @@ -1,21 +1,21 @@ -# $Id: PKGBUILD 89618 2010-09-02 16:23:36Z remy $ +# $Id: PKGBUILD 151045 2012-02-24 14:28:44Z pierre $ # Maintainer: Jan de Groot <jgc@archlinux.org> pkgname=pypgsql pkgver=2.5.1 -pkgrel=7 +pkgrel=8 pkgdesc="A python client library for postgresql" -arch=(i686 x86_64 'mips64el') +arch=('i686' 'x86_64' 'mips64el') license=('custom') url="http://pypgsql.sourceforge.net/" -depends=('python-egenix-mx-base>=2.0.6-3' 'postgresql-libs>=8.4') -source=(http://downloads.sourceforge.net/${pkgname}/pyPgSQL-${pkgver}.tar.gz - 'COPYING') +depends=('python-egenix-mx-base' 'postgresql-libs') +source=("http://downloads.sourceforge.net/${pkgname}/pyPgSQL-${pkgver}.tar.gz" + 'COPYING') md5sums=('82670f6f1652aa4766fdaec2cb43debd' '235c239b51a8b8e6b53c414ef71d7612') -build() { - cd ${srcdir}/pyPgSQL-${pkgver} || return 1 - python2 setup.py install --root=${pkgdir} || return 1 +package() { + cd ${srcdir}/pyPgSQL-${pkgver} + python2 setup.py install --root=${pkgdir} # install custom license install -Dm644 $srcdir/COPYING \ |