mirror of
				https://gitlab.alpinelinux.org/alpine/aports.git
				synced 2025-10-31 00:12:05 +01: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
		
			
				
	
	
		
			34 lines
		
	
	
		
			851 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			851 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # Contributor: Bart Ribbers <bribbers@disroot.org>
 | |
| # Maintainer: Bart Ribbers <bribbers@disroot.org>
 | |
| pkgname=py3-text2speech
 | |
| pkgver=0.1.10
 | |
| pkgrel=3
 | |
| pkgdesc="TTS engines"
 | |
| url="https://github.com/HelloChatterbox/text2speech"
 | |
| arch="noarch"
 | |
| 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 --skip-build --root="$pkgdir"
 | |
| }
 | |
| 
 | |
| sha512sums="93ef0c0f1c70479d7d8f2d599d05945f0965789729eb67bd76f05a9a596be691e47cf4a762c1cfa87b0947c58f6f0825f6db8b128db89dd3ffc2dd19bf6d09c1  text2speech-0.1.10.tar.gz"
 |