diff options
Diffstat (limited to 'testing/py3-hurry.filesize')
-rw-r--r-- | testing/py3-hurry.filesize/APKBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/testing/py3-hurry.filesize/APKBUILD b/testing/py3-hurry.filesize/APKBUILD new file mode 100644 index 0000000000..d7d279b6ca --- /dev/null +++ b/testing/py3-hurry.filesize/APKBUILD @@ -0,0 +1,24 @@ +# Contributor: Fabian Affolter <fabian@affolter-engineering.ch> +# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> +pkgname=py3-hurry.filesize +_pkgname=hurry.filesize +pkgver=0.9 +pkgrel=0 +pkgdesc="A Python library for human readable file sizes" +url="https://pypi.python.org/pypi/hurry.filesize" +arch="noarch" +license="ZPL-2.1" +depends="python3" +makedepends="py3-setuptools" +source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" +builddir="$srcdir"/$_pkgname-$pkgver + +build() { + python3 setup.py build +} + +package() { + python3 setup.py install --prefix=/usr --root="$pkgdir" +} + +sha512sums="24b7ebf5a6e833cec01d1904e5202ab5bde238fbeabb92d893866118e152c0f861f853e11bb71c58d84060bffaf0b7bc88221e37aaacc0b07751febf8a2b1606 hurry.filesize-0.9.tar.gz" |