#Maintainer: Dimitris Tzemos pkgname=flite pkgver=1.4 pkgrel=1dj source=("http://www.speech.cs.cmu.edu/flite/packed/$pkgname-$pkgver/$pkgname-$pkgver-release.tar.bz2") sourcetemplate=http://people.salixos.org/djemos/salix/$pkgname docs=("ACKNOWLEDGEMENTS" "COPYING" "README") url=http://www.speech.cs.cmu.edu/flite slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "flite (speech synthesis engine)" "Flite is a small and fast run-time synthesis engine designed for" "embedded systems and servers. Flite was developed by Alan W Black" "and Kevin Lenzo at Carnegie Mellon University, in Pittsburgh." ) build() { cd $SRC/$pkgname-$pkgver-release ./configure \ --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --sysconfdir=/etc \ --disable-static \ --localstatedir=/var \ --with-vox=cmu_us_kal16 \ --includedir=/usr/include \ --build=$arch-slackware-linux make || return 1 make install DESTDIR=$PKG INSTALLLIBDIR=$PKG/usr/lib${LIBDIRSUFFIX} INSTALLINCDIR=$PKG/usr/include/flite INSTALLBINDIR=$PKG/usr/bin || return 1 chown -R root:root $PKG || return 1 }