openfst/PKGBUILD

48 lines
2.3 KiB
Bash
Raw Normal View History

2017-06-16 12:04:29 +02:00
# Maintainer: Jean Lucas <jean@4ray.co>
# Contributor: Kilian Gebhardt <gebhardtkilian at gmail dot com>
# Contributor: Andreas Hauser <andy-aur@splashground.de>
# Contributor: Christoph Drexler <chrdr at gmx dot at>
2015-07-22 21:26:42 +02:00
pkgname=openfst
pkgver=1.6.6
2018-02-11 12:52:44 +01:00
pkgrel=2
pkgdesc='Library for constructing, combining, optimizing, and searching weighted finite-state transducers (FSTs)'
2017-12-09 14:34:26 +01:00
arch=(i686 x86_64)
url='http://www.openfst.org'
2017-12-09 14:34:26 +01:00
license=(Apache)
depends=(gcc-libs glibc python2)
2015-07-22 21:26:42 +02:00
options=(!libtool)
2017-12-09 14:34:26 +01:00
source=(http://www.openfst.org/twiki/pub/FST/FstDownload/$pkgname-$pkgver.tar.gz)
2018-02-11 12:52:44 +01:00
sha1sums=(14d2a7e5c545eab8070af2af3b77ca3a1da1f135 )
sha256sums=(b5dd6b266b7e0d8bc3ba3d46f91f70d30be593764d9f8f26d831c09edcb723ac)
sha512sums=(77dbcd041ccb0bf886b7434ec024fa903a0602f58967c44e1929e3d3b6ad2b663ea019bc76fe8fbdc44427a20f9c9d1d24648f0d64ef39ee79ef7534be1c7e8b)
2015-07-22 21:26:42 +02:00
build() {
2017-12-09 14:34:26 +01:00
cd $srcdir/$pkgname-$pkgver
2015-07-22 21:26:42 +02:00
2017-06-16 12:04:29 +02:00
# Options according to http://openfst.cs.nyu.edu/twiki/bin/view/FST/ReadMe
OPTIONS='--prefix=/usr --disable-dependency-tracking'
2018-02-11 12:52:44 +01:00
OPTIONS+=' --enable-bin' # Enable fst::script and command-line binaries; Default: yes
OPTIONS+=' --enable-compact-fsts' # Enable all CompactFst classes; Default: no
OPTIONS+=' --enable-compress' # Enable compression extension; Default: no
OPTIONS+=' --enable-const-fsts' # Enable all ConstFst classes; Default: no
OPTIONS+=' --enable-far' # Enable FAR (FST Archive) extension; Default: no
OPTIONS+=' --enable-linear-fsts' # Enable Linear{Tagger,Classifier}Fst extensions; Default: no
OPTIONS+=' --enable-lookahead-fsts' # Enable LookAheadFst classes; Default: no
OPTIONS+=' --enable-mpdt' # Enable MPDT extensions; Default: no
OPTIONS+=' --enable-ngram-fsts' # Enable NGramFst extensions; Default: no
OPTIONS+=' --enable-pdt' # Enable PDT extensions; Default: no
OPTIONS+=' --enable-python PYTHON=python2' # Enable Python extensions; Default: no
LIBS=-ldl ./configure $OPTIONS
2017-12-09 14:34:26 +01:00
2017-06-16 12:04:29 +02:00
make
2015-07-22 21:26:42 +02:00
}
package() {
2017-12-09 14:34:26 +01:00
cd $srcdir/$pkgname-$pkgver
make DESTDIR=$pkgdir install
2017-12-09 14:34:26 +01:00
install -d $pkgdir/etc/ld.so.conf.d/
echo /usr/lib/fst > $pkgdir/etc/ld.so.conf.d/openfst.conf
2015-07-22 21:26:42 +02:00
}