blob: 9c54fb0d1260353180af365f91780243b4d7161d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Description: general API for producing text-to-speech output
# URL: http://mail.gnome.org/mailman/listinfo/gnome-accessibility-devel
# Maintainer: NuTyX GNOME team
# Packager: thierryn1 at hispeed dot ch
# Depends on: libbonobo, jdk, speech-dispatcher
# Run on: libbonobo,speech-dispatcher,jdk
name=gnome-speech
version=0.4.25
release=1
source=(http://ftp.gnome.org/pub/gnome/sources/$name/${version%.*}/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--disable-static \
--disable-gtk-doc \
--with-speech-dispatcher
make
make DESTDIR=$PKG install
}
|