diff options
Diffstat (limited to 'community/espeak/PKGBUILD')
-rw-r--r-- | community/espeak/PKGBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/community/espeak/PKGBUILD b/community/espeak/PKGBUILD new file mode 100644 index 000000000..c322cfaee --- /dev/null +++ b/community/espeak/PKGBUILD @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 75640 2012-08-27 22:14:26Z arodseth $ +# Maintainer: Alexander Rødseth <rodseth@gmail.com> +# Contributor: Mateusz Herych <heniekk@gmail.com> +# Contributor: Christoph Siegenthaler <csi@gmx.ch> + +pkgname=espeak +pkgver=1.46.02 +pkgrel=2 +pkgdesc="Text to Speech engine for good quality English, with support for other languages" +arch=('x86_64' 'i686') +url='http://espeak.sourceforge.net/' +license=('GPL') +depends=('portaudio' 'libpulse') +options=('!emptydirs') +source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver-source.zip") +sha256sums=('ef8beba25bd261718582d5cbb1f10293007eb525b705ff79c9fb3f505dd954ba') + +build() { + cd "$srcdir/$pkgname-$pkgver-source/src" + + cp portaudio19.h portaudio.h + make CXXFLAGS="$CXXFLAGS" AUDIO=runtime +} + +package() { + cd "$srcdir/$pkgname-$pkgver-source/src" + + make DESTDIR=$pkgdir install + chmod 644 "$pkgdir/usr/lib/libespeak.a" +} + +# vim:set ts=2 sw=2 et: |