blob: 728c40be49bdde2b59cd7f00d9ab1cb3b50c3659 (
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
|
# Description: general API for producing text-to-speech output
# URL: http://mail.gnome.org/mailman/listinfo/gnome-accessibility-devel
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: libbonobo, jdk
name=gnome-speech
version=0.4.22
release=1
gnomever=2.24.3
source=(http://download.gnome.org/desktop/${gnomever%.*}/$gnomever/sources/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr \
--disable-gtk-doc \
--without-dectalk \
--without-theta \
--without-eloquence \
--without-java \
--without-jab \
--without-freetts
make
make DESTDIR=$PKG install
}
|