blob: 6a8ca2f00ba16f565cf5cac7402ccd23e34e3b5e (
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
26
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=espeak
pkgver=1.44.05
pkgrel=1
pkgdesc="Speech synthesizer for English and other languages"
url="http://espeak.sourceforge.net/"
arch="all"
license="GPL-3"
subpackages="$pkgname-dev"
depends=
makedepends=
source="http://downloads.sourceforge.net/project/espeak/espeak/espeak-${pkgver%.*}/espeak-$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="603b3e5fc8510a82b76f51a94cb3c7a1 espeak-1.44.05-source.zip"
|