desktop/python2-simplejson/PKGBUILD
Adrian Chaves Fernandez (Gallaecio) 1e1d401ce0 Python Simple JSON 3.1.3
2013-04-07 20:43:56 +00:00

30 lines
861 B
Bash

#
# Apps Packages for Chakra, part of chakra-project.org
#
# Maintainer: Adrian Chaves Fernandez (Gallaecio) <adriyetichaves@gmail.com>
# Contributor: Giuseppe Calà <jiveaxe@gmail.com>
pkgname=python2-simplejson
_pkgname=simplejson
pkgver=3.1.3
pkgrel=1
pkgdesc="Simple, fast, extensible JSON encoder/decoder for Python"
license=('MIT')
arch=('any')
url="https://github.com/simplejson/simplejson"
depends=('python2')
makedepends=('python-distribute')
replaces=(python-simplejson)
provides=(python-simplejson)
source=(http://pypi.python.org/packages/source/s/$_pkgname/$_pkgname-${pkgver}.tar.gz)
md5sums=('ffb9fdd8ff3225a61b455bb1bcb98e41')
package() {
cd ${srcdir}/$_pkgname-${pkgver}
python2 setup.py install --root=${pkgdir}
# License
install -Dm644 ${srcdir}/$_pkgname-${pkgver}/LICENSE.txt \
${pkgdir}/usr/share/licenses/$pkgname/LICENSE
}