mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 19:25:25 +03:00
24 lines
778 B
Text
24 lines
778 B
Text
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
# Maintainer: Bart Ribbers <bribbers@disroot.org>
|
|
pkgname=py3-pyache
|
|
pkgver=0.1.0
|
|
pkgrel=0
|
|
pkgdesc="Python numpy caching library"
|
|
url="https://github.com/MycroftAI/pyache"
|
|
arch="noarch !mips !mips64" # py3-numpy missing
|
|
license="Apache-2.0"
|
|
depends="python3 py3-numpy"
|
|
makedepends="py3-setuptools py3-numpy-dev"
|
|
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="0ae228ccfd270991ea7c4d074425580f45b0bc008a9e577fd0bd897bd2f64f40df7fe4c52e584dfdae7fd6b9604330400553445a7e2611d308bb96d13d4e8d84 pyache-0.1.0.tar.gz"
|