diff options
Diffstat (limited to 'community/espeak')
-rw-r--r-- | community/espeak/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/community/espeak/PKGBUILD b/community/espeak/PKGBUILD new file mode 100644 index 000000000..9f791f1df --- /dev/null +++ b/community/espeak/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 28906 2010-10-07 13:37:38Z cbrannon $ +# Maintainer: Mateusz Herych <heniekk@gmail.com> +# Contributor: niQo +# Contributor: Christoph Siegenthaler <csi@gmx.ch> + +pkgname=espeak +pkgver=1.44.05 +pkgrel=2 +pkgdesc="Text to Speech engine for good quality English, with support for other languages" +arch=('i686' 'x86_64') +url="http://espeak.sourceforge.net/" +license=('GPL') +depends=('gcc-libs' 'portaudio') +source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}-source.zip) +md5sums=('603b3e5fc8510a82b76f51a94cb3c7a1') + +build() { + cd $srcdir/$pkgname-$pkgver-source/src + cp portaudio19.h portaudio.h + make +} +package() { + cd $srcdir/$pkgname-$pkgver-source/src + make DESTDIR=$pkgdir install + find "$pkgdir/usr/share/espeak-data" -type f -print0 |xargs -0 chmod 644 +} |