diff options
| -rw-r--r-- | testing/py3-mmh3/APKBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/testing/py3-mmh3/APKBUILD b/testing/py3-mmh3/APKBUILD new file mode 100644 index 0000000000..49360a08f2 --- /dev/null +++ b/testing/py3-mmh3/APKBUILD @@ -0,0 +1,32 @@ +# Contributor: Oleg Titov <oleg.titov@gmail.com> +# Maintainer: Oleg Titov <oleg.titov@gmail.com> +pkgname=py3-mmh3 +pkgver=2.5.1 +pkgrel=0 +pkgdesc="Python wrapper for MurmurHash (MurmurHash3), a set of fast and robust hash functions" +url="https://github.com/hajimes/mmh3" +arch="all" +license="CC0-1.0" +depends="python3" +makedepends="python3-dev py3-setuptools" +checkdepends="py3-numpy" +subpackages="$pkgname-doc" +source="mmh3-$pkgver.tar.gz::https://github.com/hajimes/mmh3/archive/v$pkgver.tar.gz" +builddir="$srcdir/mmh3-$pkgver" + +build() { + python3 setup.py build +} + +check() { + PYTHONPATH="$(echo $PWD/build/lib.*)" python3 test_mmh3.py +} + +package() { + python3 setup.py install --prefix=/usr --root="$pkgdir" + + install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" + install -Dm644 README.rst "$pkgdir/usr/share/doc/$pkgname/README.rst" +} + +sha512sums="1573e5d5dd0f0af331e2e69bc61b9fdbbe19d136c3338bfcc142bedfdedcfc85dbfc1b572d031c131266bb5b9efa56e3d91d0782ae13335eecdc205be0f23945 mmh3-2.5.1.tar.gz" |
