mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 11:15:13 +03:00
33 lines
883 B
Text
33 lines
883 B
Text
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
# Maintainer: Bart Ribbers <bribbers@disroot.org>
|
|
pkgname=py3-text2speech
|
|
pkgver=0.1.10
|
|
pkgrel=1
|
|
pkgdesc="TTS engines"
|
|
url="https://github.com/HelloChatterbox/text2speech"
|
|
arch="noarch !mips64" # blocked by py3-boto3
|
|
license="Apache-2.0"
|
|
depends="
|
|
py3-boto3
|
|
py3-gtts
|
|
py3-ovos-utils
|
|
py3-psutil
|
|
py3-requests-futures
|
|
py3-responsivevoice
|
|
py3-voxpopuli
|
|
python3
|
|
"
|
|
makedepends="py3-setuptools"
|
|
source="https://pypi.python.org/packages/source/t/text2speech/text2speech-$pkgver.tar.gz"
|
|
options="!check" # No tests
|
|
builddir="$srcdir/text2speech-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="93ef0c0f1c70479d7d8f2d599d05945f0965789729eb67bd76f05a9a596be691e47cf4a762c1cfa87b0947c58f6f0825f6db8b128db89dd3ffc2dd19bf6d09c1 text2speech-0.1.10.tar.gz"
|