mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 12:15:32 +03:00
46 lines
1.1 KiB
Text
46 lines
1.1 KiB
Text
# Maintainer: William Pitcock <nenolod@dereferenced.org>
|
|
pkgname=py-jsonpickle
|
|
pkgver=0.9.5
|
|
pkgrel=0
|
|
pkgdesc="an jsonpickle implementation"
|
|
url="https://pypi.python.org/pypi/jsonpickle/"
|
|
arch="noarch"
|
|
license="BSD"
|
|
depends=""
|
|
makedepends="python2-dev python3-dev py-setuptools"
|
|
install=""
|
|
subpackages="py2-jsonpickle:py2 py3-jsonpickle:py3"
|
|
source="https://files.pythonhosted.org/packages/source/j/jsonpickle/jsonpickle-$pkgver.tar.gz"
|
|
builddir="$srcdir/jsonpickle-$pkgver"
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
python2 setup.py build
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
mkdir -p "$pkgdir"
|
|
}
|
|
|
|
_py() {
|
|
local python="$1"
|
|
pkgdesc="$pkgdesc ${python#python}"
|
|
depends="$depends $python"
|
|
install_if="$pkgname=$pkgver-r$pkgrel $python"
|
|
|
|
cd "$builddir"
|
|
$python setup.py install --prefix=/usr --root="$subpkgdir"
|
|
}
|
|
|
|
py2() {
|
|
cd "$builddir"
|
|
_py python2
|
|
}
|
|
|
|
py3() {
|
|
cd "$builddir"
|
|
_py python3
|
|
}
|
|
|
|
sha512sums="4fd3a61a08c149ccce578c78c4f3117546f58819a1015f9d8fc794c84af9b882e77905ca42a12b1f9716e2652fc4e959a85d3aee3b937be687bd5a9abe8859e2 jsonpickle-0.9.5.tar.gz"
|