diff options
author | root <root@rshg054.dnsready.net> | 2012-03-06 00:01:33 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-03-06 00:01:33 +0000 |
commit | b8afacf1f28ac27321feb9b92bd50dd8961b7736 (patch) | |
tree | de441882aca38091a1e438e1d8da8a9af3bd023a /community/espeak/PKGBUILD | |
parent | 11711de1942a141f28faef695c4c78c8357fbf23 (diff) |
Tue Mar 6 00:01:33 UTC 2012
Diffstat (limited to 'community/espeak/PKGBUILD')
-rw-r--r-- | community/espeak/PKGBUILD | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/community/espeak/PKGBUILD b/community/espeak/PKGBUILD index 5611a89e1..a5517d62d 100644 --- a/community/espeak/PKGBUILD +++ b/community/espeak/PKGBUILD @@ -1,26 +1,29 @@ -# $Id: PKGBUILD 61395 2011-12-30 08:21:47Z bpiotrowski $ -# Maintainer: Mateusz Herych <heniekk@gmail.com> -# Contributor: niQo +# $Id: PKGBUILD 67106 2012-03-04 10:23:58Z andrea $ +# Maintainer: +# Contributor: Mateusz Herych <heniekk@gmail.com> # Contributor: Christoph Siegenthaler <csi@gmx.ch> pkgname=espeak -pkgver=1.46.01 +pkgver=1.46.02 pkgrel=1 pkgdesc="Text to Speech engine for good quality English, with support for other languages" arch=('i686' 'x86_64') -url="http://espeak.sourceforge.net/" +url='http://espeak.sourceforge.net/' license=('GPL') depends=('gcc-libs' 'portaudio') -source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}-source.zip) -md5sums=('a3e9de4b2a56ec19c059115dca587494') +source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}-source.zip") +md5sums=('84e8e44562f05a3afc5427218afc8af1') 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 + + # Fix permissions + chmod 644 ${pkgdir}/usr/lib/libespeak.a } |