summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 407a6d4a96d039b3d4184541f8052bba423076a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# Maintainer: Marco Pompili <aur AT emarcs DOT org>
# Contributor: Giorgio Gilestro crocowhile@gmail.com
# Contributor: Martchus <martchus@gmx.net>
# Contributor: Mladen Milinkovic <maxrd2@smoothware.net>

pkgname=sphinxbase
pkgver=5prealpha
pkgrel=5
pkgdesc='Common library for sphinx speech recognition.'
url='http://cmusphinx.sourceforge.net/'
arch=('i686' 'x86_64')
license=('BSD')
makedepends=('bison' 'swig')
depends=('python2' 'python' 'lapack' 'libpulse') # not sure if libsamplerate is needed 'libsamplerate'
source=("http://downloads.sourceforge.net/project/cmusphinx/${pkgname}/${pkgver}/$pkgname-$pkgver.tar.gz"
        "https://raw.githubusercontent.com/cmusphinx/sphinxbase/master/LICENSE"
        "timing-fix.patch")
sha256sums=('06971dbe272d2f73bde0ef7b3538c0c8f8ea885cb171fd6b17a5975bced66e64'
            '8b4bc30d2a57839cba678bb84472a9b0b4c84725ed04b37508e5ed3476f03c19'
            '5e8b2bac5d9f84a1c7b7fd774ef2b3f8f6cfc9dcb415b10a66ef439f91f3d4c5')
options=('!libtool')

prepare() {
  cd "$pkgname-$pkgver"

  msg2 "Applying timing fix patch"
  patch -p1 < "$srcdir/timing-fix.patch"

  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() {
  cd "$pkgname-$pkgver-py2"

  msg2 "Building Sphinxbase with Python 2 bindings..."
  ./configure --prefix=/usr
  make

  cd "../$pkgname-$pkgver-py3"
  msg2 "Building Sphinxbase with Python 3 bindings..."
  export PYTHON=/usr/bin/python2
  ./configure --prefix=/usr
  make
}

package() {
  cd "$pkgname-$pkgver-py2"

  msg2 "Installing Sphinxbase with Python 2 bindings"
  make DESTDIR="$pkgdir/" install

  msg2 "Installing Python 3 bindings"
  cd "../$pkgname-$pkgver-py3/swig"
  make DESTDIR="$pkgdir/" install

  install -d "$pkgdir/usr/share/licenses/$pkgname"
  install -m644 "${srcdir}/LICENSE" \
                "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"

  libtool --finish "$pkgdir/usr/lib"
  libtool --finish "$pkgdir/usr/lib/python2.7/site-packages/sphinxbase"
  libtool --finish "$pkgdir/usr/lib/python3.5/site-packages/sphinxbase"
}