summaryrefslogtreecommitdiff
path: root/community/espeak
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
commit415856bdd4f48ab4f2732996f0bae58595092bbe (patch)
treeede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/espeak
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/espeak')
-rw-r--r--community/espeak/PKGBUILD26
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
+}