diff options
Diffstat (limited to 'community/python-simplejson/PKGBUILD')
-rw-r--r-- | community/python-simplejson/PKGBUILD | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/community/python-simplejson/PKGBUILD b/community/python-simplejson/PKGBUILD index 5ac12532a..ce91e686d 100644 --- a/community/python-simplejson/PKGBUILD +++ b/community/python-simplejson/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 95625 2013-08-15 08:14:50Z arodseth $ +# $Id: PKGBUILD 105342 2014-02-05 15:26:52Z arodseth $ # Maintainer: Alexander Rødseth <rodseth@gmail.com> # Contributor: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> # Contributor: Allan McRae <allan@archlinux.org> @@ -6,20 +6,20 @@ pkgbase=python-simplejson pkgname=("$pkgbase" 'python2-simplejson') -pkgver=3.3.0 +pkgver=3.3.2 pkgrel=1 pkgdesc='Simple, fast, extensible JSON encoder/decoder for Python' license=('MIT') arch=('i686' 'x86_64' 'mips64el') url='http://undefined.org/python/#simplejson' -makedepends=('python' 'python2-distribute') +makedepends=('python-setuptools' 'python2-setuptools') source=("$pkgname-$pkgver.tar.gz::https://github.com/simplejson/simplejson/tarball/v${pkgver}") -sha256sums=('ed7e700a9b689f81e54738d796ce456eca12481412f198d44d42f69d8d6f9a82') +sha256sums=('ecff7508cb34547de611c5b367ad1ff74290f638f29853be5801823e1565592c') package_python-simplejson() { depends=('python') - cd "$srcdir/simplejson-simplejson-"* + cd "simplejson-simplejson-"* python setup.py install --root="$pkgdir" install -Dm644 "$srcdir/simplejson-simplejson"-*/LICENSE.txt \ "$pkgdir/usr/share/licenses/$pkgname/LICENSE" @@ -28,7 +28,7 @@ package_python-simplejson() { package_python2-simplejson() { depends=('python2') - cd "$srcdir/simplejson-simplejson-"* + cd "simplejson-simplejson-"* python2 setup.py install --root="$pkgdir" install -Dm644 "$srcdir/simplejson-simplejson"-*/LICENSE.txt \ "$pkgdir/usr/share/licenses/$pkgname/LICENSE" |