desktop/python2-simplejson/PKGBUILD

30 lines
861 B
Bash
Raw Normal View History

2012-08-30 19:20:27 +08:00
#
# 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
2013-01-12 03:34:24 +08:00
pkgver=3.0.6
2012-09-22 14:08:27 +08:00
pkgrel=1
2012-08-30 19:20:27 +08:00
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)
2012-08-30 19:20:27 +08:00
source=(http://pypi.python.org/packages/source/s/$_pkgname/$_pkgname-${pkgver}.tar.gz)
2013-01-12 03:34:24 +08:00
md5sums=('1d7a90099121f05777e734e7b0034a71')
2012-08-30 19:20:27 +08:00
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
}