summaryrefslogtreecommitdiff
path: root/flite/Pkgfile
blob: 4728d727a7c226a6acdd872d70183d7388177211 (plain)
    1 # Description: A lightweight speech synthesis engine"
    2 # URL:         http://www.festvox.org/flite/"
    3 # Maintainer:  Aaron Ball, nullspoon at oper dot io
    4 # Depends on:  alsa-lib chrpath
    5 
    6 name=flite
    7 version=2.2
    8 release=1
    9 source=(https://github.com/festvox/flite/archive/refs/tags/v${version}.tar.gz)
   10 
   11 build() {
   12   cd "${name}-${version}"
   13 
   14   ./configure --prefix=/usr \
   15     --enable-shared \
   16     --with-audio=alsa
   17 
   18   # -j1 for https://github.com/festvox/flite/issues/99
   19   make -j1
   20   make DESTDIR="${PKG}" install
   21 }

Generated by cgit