mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
38 lines
1.1 KiB
Bash
38 lines
1.1 KiB
Bash
# Fork from https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=flite&id=ed18f1906aed8167ed5e7052a56ac1cdeb8e36e0
|
|
|
|
pkgname=flite
|
|
pkgver=2.0.0
|
|
pkgrel=1
|
|
pkgdesc="A lighweight speech synthesis engine (text to speech)"
|
|
arch=('x86_64')
|
|
url="http://cmuflite.org"
|
|
license=('BSD')
|
|
depends=('alsa-lib')
|
|
options=('strip' '!buildflags')
|
|
source=(http://festvox.org/flite/packed/flite-2.0/flite-2.0.0-release.tar.bz2)
|
|
md5sums=('645db96ffc296cbb6d37f231cc1cc6b2')
|
|
|
|
prepare() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}-release"
|
|
sed '/^#VOXES.*$/d; s/+//g; s/cmu_indic_lex/&\nVOXES = cmu_us_kal16 cmu_us_slt/' config/android.lv > config/linux.lv
|
|
sed -i '/$(INSTALL) -m 755 $(BINDIR)\/flite_time $(DESTDIR)$(INSTALLBINDIR)/d' main/Makefile
|
|
}
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}-release"
|
|
./configure \
|
|
--prefix=/usr \
|
|
--enable-shared \
|
|
--with-audio=alsa \
|
|
--with-vox=cmu_us_kal16 \
|
|
--with-langvox=linux
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}-release"
|
|
make prefix="${pkgdir}/usr" install
|
|
install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
|
}
|
|
|