mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
22 lines
705 B
Bash
22 lines
705 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Mateusz Herych <heniekk@gmail.com>
|
|
# Contributor: niQo
|
|
# Contributor: Christoph Siegenthaler <csi@gmx.ch>
|
|
|
|
pkgname=espeak
|
|
pkgver=1.40.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/"
|
|
license=('GPL')
|
|
depends=('gcc-libs' 'portaudio')
|
|
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}-source.zip)
|
|
md5sums=('708954b44c526e8174df8b88a6382738')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver-source/src
|
|
cp portaudio19.h portaudio.h
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install || return 1
|
|
}
|