updated on Thu Jan 19 20:01:47 UTC 2012
[aur-mirror.git] / cmu-sml-toolkit / PKGBUILD
blobaee3445e545a8c76b7a206aa2a20196e2bf5eb33
1 # Maintainer: SpepS <dreamspepser at yahoo dot it>
3 _pkg=CMU-Cam_Toolkit_v2
4 pkgname=cmu-sml-toolkit
5 pkgver=2.05
6 pkgrel=1
7 pkgdesc="The CMU-Cambridge Statistical Language Modeling toolkit is a suite of UNIX software tools to facilitate the construction and testing of statistical language models."
8 arch=(i686 x86_64)
9 url="http://www.speech.cs.cmu.edu/SLM/toolkit.html"
10 license=('GPL')
11 source=("http://www.speech.cs.cmu.edu/SLM/$_pkg.tar.gz")
12 md5sums=('ef64b894c252774fdd2e86261008198f')
14 build() {
15   cd "$srcdir/$_pkg/src"
17   # enable little endian build
18   sed -i "/^#BYTESWAP_FLAG/s/#//" Makefile
20   make
23 package() {
24   cd "$srcdir/$_pkg"
26   # bin
27   install -d "$pkgdir"/usr/{lib,share/doc/$pkgname}
28   cp -a bin "$pkgdir/usr"
30   # header
31   cp -a include "$pkgdir/usr"
33   # lib
34   install -Dm644 lib/SLM2.a "$pkgdir/usr/lib"
36   # docs
37   install -Dm644 doc/* "$pkgdir/usr/share/doc/$pkgname"
40 # vim:set ts=2 sw=2 et: