diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-04-19 09:13:16 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-04-19 09:18:46 +0000 |
commit | 892bdf3b34ea67b7bfc07f582a21be38ff3fa917 (patch) | |
tree | 76e75c92b50ccf6ba7cbfcbfec44b5d3427e63a0 | |
parent | f7bad272a5f2f245a662dbff7def16843babeffe (diff) | |
download | aports-892bdf3b34ea67b7bfc07f582a21be38ff3fa917.tar.bz2 aports-892bdf3b34ea67b7bfc07f582a21be38ff3fa917.tar.xz |
testing/flite: new aport
Small, fast speech synthesis engine (text-to-speech)
http://www.speech.cs.cmu.edu/flite/
-rw-r--r-- | testing/flite/APKBUILD | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/testing/flite/APKBUILD b/testing/flite/APKBUILD new file mode 100644 index 000000000..309fc4d67 --- /dev/null +++ b/testing/flite/APKBUILD @@ -0,0 +1,52 @@ +# Contributor: Natanael Copa <ncopa@alpinelinux.org> +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=flite +pkgver=1.4 +pkgrel=0 +pkgdesc="Small, fast speech synthesis engine (text-to-speech)" +url="http://www.speech.cs.cmu.edu/flite/" +arch="all" +license="MIT" +depends= +depends_dev= +makedepends="$depends_dev" +install="" +subpackages="$pkgname-dev" +source="http://www.speech.cs.cmu.edu/flite/packed/flite-1.4/flite-$pkgver-release.tar.bz2" + +_builddir="$srcdir"/flite-$pkgver-release +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --localstatedir=/var \ + || return 1 + # work around parallel build issue + make -C include + make -C src + make -C lang + make -C tools + make -j1 || return 1 +} + +package() { + cd "$_builddir" + make install INSTALLBINDIR="$pkgdir"/usr/bin \ + INSTALLLIBDIR="$pkgdir"/usr/lib \ + INSTALLINCDIR="$pkgdir"/usr/include/flite \ + || return 1 +} + +md5sums="b7c3523b3bbc6f29ce61e6650cd9a428 flite-1.4-release.tar.bz2" |