# Maintainer: Matt Harrison < matt at mistbyte dot com > # Contributor: Muhammad Qadri pkgname=julius pkgver=4.2.1 pkgrel=1 pkgdesc="A high-performance, two-pass large vocabulary continuous speech recognition (LVCSR) decoder software for speech-related researchers and developers" arch=("i686" "x86_64") url="http://julius.sourceforge.jp/" license=("custom") depends=("libpulse" "perl") source=("http://osdn.dl.sourceforge.jp/${pkgname}/54278/${pkgname}-${pkgver}.tar.gz") sha256sums=("4e6f69f33967d7a958672a6b6d216405dcae8a3f008ae73cd115428923aed57a") build() { cd "${srcdir}/${pkgname}-${pkgver}" ./configure \ --prefix='/usr' \ --mandir='${prefix}/share/man' \ --enable-words-int \ --enable-msd \ --enable-gmm-vad \ --enable-decoder-vad \ --enable-power-reject \ --enable-wpair make } package() { cd "${srcdir}/${pkgname}-${pkgver}" make prefix="${pkgdir}/usr" install #make DESTDIR=${pkgdir} install install -D LICENSE.txt \ "${pkgdir}/usr/share/licenses/julius/LICENSE.txt" } # vim:set ts=2 sw=2 et: