diff options
author | James Meyer <james.meyer@operamail.com> | 2010-01-31 00:53:32 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2010-01-31 00:53:32 (GMT) |
commit | 166ca50203a85728e54b1fc8c649166b31e8a754 (patch) | |
tree | e555fe5593d9c927b14cc33d4a241dbf7c785ae4 /abs | |
parent | a2c0e579e958a060e2dd5e7db664e2ddcd5c8fb3 (diff) | |
download | linhes_pkgbuild-166ca50203a85728e54b1fc8c649166b31e8a754.zip linhes_pkgbuild-166ca50203a85728e54b1fc8c649166b31e8a754.tar.gz linhes_pkgbuild-166ca50203a85728e54b1fc8c649166b31e8a754.tar.bz2 |
python-simple-json: add pkg
Diffstat (limited to 'abs')
-rw-r--r-- | abs/core-testing/python-simplejson/PKGBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/abs/core-testing/python-simplejson/PKGBUILD b/abs/core-testing/python-simplejson/PKGBUILD new file mode 100644 index 0000000..d1c7437 --- /dev/null +++ b/abs/core-testing/python-simplejson/PKGBUILD @@ -0,0 +1,24 @@ +# $ Id: $ +# Maintainer: Allan McRae <allan@archlinux.org> +# Contributor: David Moore <davidm@sjsoft.com> + +pkgname=python-simplejson +pkgver=2.0.9 +pkgrel=1 +pkgdesc="Simple, fast, extensible JSON encoder/decoder for Python" +license=('MIT') +arch=('i686' 'x86_64') +url="http://undefined.org/python/#simplejson" +depends=('python') +makedepends=('setuptools') +source=("http://pypi.python.org/packages/source/s/simplejson/simplejson-${pkgver}.tar.gz") +md5sums=('af5e67a39ca3408563411d357e6d5e47') + +build() { + cd ${srcdir}/simplejson-${pkgver} + python setup.py install --root=${pkgdir} + + # License + install -Dm644 ${srcdir}/simplejson-${pkgver}/LICENSE.txt \ + ${pkgdir}/usr/share/licenses/python-simplejson/license +} |