summaryrefslogtreecommitdiff
path: root/community/espeak
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2012-08-29 11:24:07 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2012-08-29 11:24:07 -0300
commit38bae167f23bd509b81394975c012b8abb1693d7 (patch)
tree3b926bce43f03c0366d78ad6253cbdf9520235d4 /community/espeak
parent2bcb8acb8b02bde03c5d285baafe754760788265 (diff)
parent498a4346616c33beac56d48a246cf27fe3812341 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/espeak/PKGBUILD community/gmic/PKGBUILD extra/dhcp/PKGBUILD extra/hspell/PKGBUILD extra/libatasmart/PKGBUILD extra/udisks/PKGBUILD extra/xorg-server/PKGBUILD testing/libdrm/PKGBUILD testing/libdrm/no-pthread-stubs.patch testing/systemd/PKGBUILD
Diffstat (limited to 'community/espeak')
-rw-r--r--community/espeak/PKGBUILD29
1 files changed, 16 insertions, 13 deletions
diff --git a/community/espeak/PKGBUILD b/community/espeak/PKGBUILD
index 93ec88a20..a35be4c24 100644
--- a/community/espeak/PKGBUILD
+++ b/community/espeak/PKGBUILD
@@ -1,29 +1,32 @@
-# $Id: PKGBUILD 67106 2012-03-04 10:23:58Z andrea $
-# Maintainer:
+# $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=1
+pkgrel=2
pkgdesc="Text to Speech engine for good quality English, with support for other languages"
arch=('i686' 'x86_64' 'mips64el')
url='http://espeak.sourceforge.net/'
license=('GPL')
-depends=('gcc-libs' 'portaudio')
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}-source.zip")
-md5sums=('84e8e44562f05a3afc5427218afc8af1')
+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
+ 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
+ cd "$srcdir/$pkgname-$pkgver-source/src"
- # Fix permissions
- chmod 644 ${pkgdir}/usr/lib/libespeak.a
+ make DESTDIR=$pkgdir install
+ chmod 644 "$pkgdir/usr/lib/libespeak.a"
}
+
+# vim:set ts=2 sw=2 et: