blob: c31ce3818a5cd14a24e432a69b36e8c84c2318f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=espeak
pkgver=1.42.04
pkgrel=0
pkgdesc="Speech synthesizer for English and other languages"
url="http://espeak.sourceforge.net/"
license="GPL-3"
subpackages="$pkgname-dev"
depends=
makedepends=
source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver-source.zip"
_builddir="$srcdir"/$pkgname-$pkgver-source
build() {
cd "$_builddir"/src
make AUDIO=none || return 1
}
package() {
cd "$_builddir"/src
make AUDIO=none DESTDIR="$pkgdir" install || return 1
}
md5sums="a4cbbe5f2e2a37ccc0aa1a687a6e4c11 espeak-1.42.04-source.zip"
|