mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 03:35:38 +03:00
30 lines
788 B
Text
30 lines
788 B
Text
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
# Maintainer: Bart Ribbers <bribbers@disroot.org>
|
|
pkgname=py3-pyache
|
|
pkgver=0.2.0
|
|
pkgrel=1
|
|
pkgdesc="Python numpy caching library"
|
|
url="https://github.com/MycroftAI/pyache"
|
|
arch="noarch !mips !mips64" # py3-numpy missing
|
|
license="Apache-2.0"
|
|
depends="
|
|
py3-numpy
|
|
python3
|
|
"
|
|
makedepends="
|
|
py3-numpy-dev
|
|
py3-setuptools
|
|
"
|
|
source="https://pypi.python.org/packages/source/p/pyache/pyache-$pkgver.tar.gz"
|
|
options="!check" # No tests
|
|
builddir="$srcdir/pyache-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="482eb26bed16fa54a72acf29d4ac2789848675e51a254ad724ef0708d100cb21c921174587ed101ed50f01d38d47cbbf76961c480765a7e726ab44a566e7bd95 pyache-0.2.0.tar.gz"
|