mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-21 13:41:20 +02:00
25 lines
805 B
Plaintext
25 lines
805 B
Plaintext
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
# Maintainer: Bart Ribbers <bribbers@disroot.org>
|
|
pkgname=py3-speechpy
|
|
pkgver=2.4
|
|
pkgrel=2
|
|
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 --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="0e797c06953174e847eee4e2f41031e6605242dea713563ce402537f9392769a4893fc6aa0903d403174691dc5161805910529dc97bb54e9df460eba5c6b0503 speechpy-fast-2.4.tar.gz"
|