mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-22 02:35:23 +03: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
24 lines
804 B
Text
24 lines
804 B
Text
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
# Maintainer: Bart Ribbers <bribbers@disroot.org>
|
|
pkgname=py3-speechpy
|
|
pkgver=2.4
|
|
pkgrel=3
|
|
pkgdesc="A Library for Speech Processing and Recognition"
|
|
url="http://speechpy.readthedocs.io/en/latest/"
|
|
arch="noarch"
|
|
license="Apache-2.0"
|
|
depends="python3 py3-numpy py3-scipy"
|
|
makedepends="py3-setuptools py3-numpy-dev"
|
|
source="https://pypi.python.org/packages/source/s/speechpy-fast/speechpy-fast-$pkgver.tar.gz"
|
|
options="!check" # No tests
|
|
builddir="$srcdir/speechpy-fast-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="0e797c06953174e847eee4e2f41031e6605242dea713563ce402537f9392769a4893fc6aa0903d403174691dc5161805910529dc97bb54e9df460eba5c6b0503 speechpy-fast-2.4.tar.gz"
|