# Maintainer: Marco Pompili # Contributor: Ben Duffield # Contributor: Martchus pkgname=pocketsphinx pkgver=5prealpha pkgrel=8 pkgdesc='Lightweight speech recognition engine, specifically tuned for handheld and mobile devices, though it works equally well on the desktop.' arch=('i686' 'x86_64') url='http://cmusphinx.sourceforge.net' license=('BSD') makedepends=('swig' 'python2' 'python') depends=('sphinxbase=5prealpha' 'gstreamer' 'gst-plugins-base-libs') source=("http://downloads.sourceforge.net/cmusphinx/$pkgname-$pkgver.tar.gz" "https://raw.githubusercontent.com/cmusphinx/pocketsphinx/master/LICENSE") sha256sums=('ef5bb5547e2712bdf571f256490ef42a47962033892efd9d7df8eed7fe573ed9' '49181202f2b991d25f6cac8cd1705994494b9600d4311794ecbb9fcf8b188aef') options=('!libtool') prepare() { cd "$pkgname-$pkgver" msg2 "Reconfiguring project for current version of Automake" autoreconf -ivf > /dev/null cd .. cp -R "$pkgname-$pkgver" "$pkgname-$pkgver-py2" cp -R "$pkgname-$pkgver" "$pkgname-$pkgver-py3" } build() { msg2 "Building python3 environment" export PYTHON=/usr/bin/python cd "$pkgname-$pkgver-py3" ./configure --prefix=/usr make msg2 "Building python2 environment" cd "../$pkgname-$pkgver-py2" export PYTHON=/usr/bin/python2 ./configure --prefix=/usr make } package() { cd "$pkgname-$pkgver-py3" make DESTDIR="$pkgdir" install cd "../$pkgname-$pkgver-py2/swig" make DESTDIR="$pkgdir" install install -d -m755 "$pkgdir/usr/share/licenses/$pkgname" install -D -m644 "${srcdir}/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" libtool --finish "$pkgdir/usr/lib" libtool --finish "$pkgdir/usr/lib/gstreamer-1.0" libtool --finish "$pkgdir/usr/lib/python2.7/site-packages/pocketsphinx" libtool --finish "$pkgdir/usr/lib/python3.6/site-packages/pocketsphinx" }