aboutsummaryrefslogtreecommitdiffstats
path: root/community/py3-zipstream/APKBUILD
blob: 08195522afd3f30f8c9e566a178cfb0e5f553bae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=py3-zipstream
_pkgname=python-zipstream
pkgver=1.1.4
pkgrel=5
pkgdesc="Like Python's ZipFile module, except it works as a generator that provides the file in many small chunks."
url="https://github.com/allanlei/python-zipstream"
arch="noarch"
license="GPL-3.0-only"
depends="python3"
makedepends="py3-setuptools"
source="$pkgname-$pkgver.tar.gz::https://github.com/allanlei/$_pkgname/archive/v$pkgver.tar.gz"
builddir="$srcdir/$_pkgname-$pkgver"

replaces="py-zipstream" # Backwards compatibility
provides="py-zipstream=$pkgver-r$pkgrel" # Backwards compatibility

check() {
	python3 setup.py check
}


build() {
	python3 setup.py build
}

package() {
	python3 setup.py install --prefix=/usr --root="$pkgdir"
}

sha512sums="722c1d7db91dc47064fc51f1182417f46923b8f42a56e854f1fa125eaccfc7f86d3deab71709226a798a1caf5a84a8a7fa7d3564065ab91afbad434ed787ce32  py3-zipstream-1.1.4.tar.gz"