mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
30 lines
808 B
Bash
30 lines
808 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# contributor (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=python-simplejson
|
|
pkgver=2.1.1
|
|
pkgrel=2
|
|
pkgdesc="Simple, fast, extensible JSON encoder/decoder for Python"
|
|
license=('MIT')
|
|
arch=('any')
|
|
url="http://undefined.org/python/#simplejson"
|
|
depends=('python2')
|
|
makedepends=('python-distribute')
|
|
source=(http://pypi.python.org/packages/source/s/simplejson/simplejson-${pkgver}.tar.gz)
|
|
md5sums=('0bbe3a2e5e4cac040013733aca159d89')
|
|
|
|
build() {
|
|
cd ${srcdir}/simplejson-${pkgver}
|
|
|
|
python2 setup.py install --root=${pkgdir}
|
|
|
|
# License
|
|
install -Dm644 ${srcdir}/simplejson-${pkgver}/LICENSE.txt \
|
|
${pkgdir}/usr/share/licenses/python-simplejson/LICENSE
|
|
}
|