diff options
Diffstat (limited to 'testing/py3-py-radix')
-rw-r--r-- | testing/py3-py-radix/APKBUILD | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/testing/py3-py-radix/APKBUILD b/testing/py3-py-radix/APKBUILD new file mode 100644 index 0000000000..0576bda49a --- /dev/null +++ b/testing/py3-py-radix/APKBUILD @@ -0,0 +1,38 @@ +# Contributor: +# Maintainer: Kristóf Jakab <jakab.kristof@balasys.hu> +pkgname=py3-py-radix +_pkgname=py-radix +pkgver=0.10.0 +pkgrel=1 +pkgdesc="An implementation of a radix tree for Python" +url="https://github.com/mjschultz/py-radix" +arch="all" +license="BSD" +depends="python3" +makedepends="py3-setuptools python3-dev" +checkdepends="py3-coverage py3-nose" +subpackages="$pkgname-doc" +source="$pkgname-$pkgver.tar.gz::https://github.com/mjschultz/py-radix/archive/v$pkgver.tar.gz" + +builddir="$srcdir/$pkgname-$pkgver" + +replaces=py-radix # Backwards compatibility +provides=py-radix=$pkgver-r$pkgrel # Backwards compatibility + +build() { + cd "$builddir" + python3 setup.py build +} + +check() { + cd "$builddir" + python3 setup.py test +} + +package() { + cd "$builddir" + python3 setup.py install --prefix=/usr --root="$pkgdir" + install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +} + +sha512sums="b4b6a35aad76c19c2eaa5bff828cbec5182cc4074397d4b9e5c39ac76bd9045c86600ed52ac06632abac8a9e70d6e82aa9e741ab3eb92970453bb14acdba72ea py-radix-0.10.0.tar.gz" |