mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-11-03 01:42:03 +01:00
this marginally increases install speed by not checking if it needs a rebuild. also remove --prefix=/usr as it defaults to /usr already. might break a build or two, will fix later
31 lines
749 B
Plaintext
31 lines
749 B
Plaintext
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
# Maintainer: Bart Ribbers <bribbers@disroot.org>
|
|
pkgname=py3-zict
|
|
pkgver=2.2.0
|
|
pkgrel=1
|
|
pkgdesc="Mutable mapping tools"
|
|
url="http://zict.readthedocs.io/en/latest/"
|
|
arch="noarch"
|
|
license="BSD-3-Clause"
|
|
depends="python3 py3-heapdict py3-lmdb"
|
|
makedepends="py3-setuptools"
|
|
checkdepends="py3-pytest"
|
|
source="https://pypi.python.org/packages/source/z/zict/zict-$pkgver.tar.gz"
|
|
builddir="$srcdir/zict-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
pytest
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
63ed28fc26389e2eaa085efb43f3179abc41d30a724de2a6129fc0aa7c500983e598428e7c5f06fd8cdd40b58c0b57374d5c65bf4af96852df77ef7ce2c60afe zict-2.2.0.tar.gz
|
|
"
|