From 11284e2c437b620e9728dc344bdc9d18f3d2312d Mon Sep 17 00:00:00 2001 From: Jean Lucas Date: Wed, 31 Jan 2018 05:21:59 -0500 Subject: [PATCH] Version bump, add upstream sha1 and sha256sums --- .SRCINFO | 12 +++++++----- PKGBUILD | 40 ++++++++++++++++++++++------------------ 2 files changed, 29 insertions(+), 23 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index ab4f9c4..93e75ed 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,9 +1,9 @@ # Generated by mksrcinfo v8 -# Sat Dec 16 22:22:59 UTC 2017 +# Wed Jan 31 10:20:41 UTC 2018 pkgbase = openfst pkgdesc = Library for constructing, combining, optimizing, and searching weighted finite-state transducers (FSTs) - pkgver = 1.6.5 - pkgrel = 2 + pkgver = 1.6.6 + pkgrel = 1 url = http://www.openfst.org arch = i686 arch = x86_64 @@ -12,8 +12,10 @@ pkgbase = openfst depends = glibc depends = python2 options = !libtool - source = http://www.openfst.org/twiki/pub/FST/FstDownload/openfst-1.6.5.tar.gz - sha512sums = 68c1a96f3ecad7480b80dc124c5caedc2729ee1b94dd4a21373cce385ba616b028cd6627bcc01f6dffd6b050693cc52d79db166706f3571494c4d3a6ff40cd60 + source = http://www.openfst.org/twiki/pub/FST/FstDownload/openfst-1.6.6.tar.gz + sha1sums = 82f55dd03b38f2329b92cab95ffc56d50b514372 + sha256sums = be8092055cac342e9a962d0e908e464ccb02334816a7e77b5a712845423ddf30 + sha512sums = a81babc72653a6e68838a32f1316db1b95dfa7483e062b5cfd56e9408f4838553a315eb73351d2d7ed4cbf914c7121cc6dc1adc007aa4d8e9ce504672e2974c6 pkgname = openfst diff --git a/PKGBUILD b/PKGBUILD index 45be8f2..638cc52 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,42 +4,46 @@ # Contributor: Christoph Drexler pkgname=openfst -pkgver=1.6.5 -pkgrel=2 -pkgdesc="Library for constructing, combining, optimizing, and searching weighted finite-state transducers (FSTs)" +pkgver=1.6.6 +pkgrel=1 +pkgdesc='Library for constructing, combining, optimizing, and searching weighted finite-state transducers (FSTs)' arch=(i686 x86_64) -url="http://www.openfst.org" +url='http://www.openfst.org' license=(Apache) depends=(gcc-libs glibc python2) options=(!libtool) source=(http://www.openfst.org/twiki/pub/FST/FstDownload/$pkgname-$pkgver.tar.gz) -sha512sums=(68c1a96f3ecad7480b80dc124c5caedc2729ee1b94dd4a21373cce385ba616b028cd6627bcc01f6dffd6b050693cc52d79db166706f3571494c4d3a6ff40cd60) +sha1sums=(82f55dd03b38f2329b92cab95ffc56d50b514372) +sha256sums=(be8092055cac342e9a962d0e908e464ccb02334816a7e77b5a712845423ddf30) +sha512sums=(a81babc72653a6e68838a32f1316db1b95dfa7483e062b5cfd56e9408f4838553a315eb73351d2d7ed4cbf914c7121cc6dc1adc007aa4d8e9ce504672e2974c6) build() { cd $srcdir/$pkgname-$pkgver # Options according to http://openfst.cs.nyu.edu/twiki/bin/view/FST/ReadMe - OPTIONS="--prefix=/usr --disable-dependency-tracking" - 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 + OPTIONS='--prefix=/usr --disable-dependency-tracking' + 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 make } package() { cd $srcdir/$pkgname-$pkgver + make DESTDIR=$pkgdir install install -d $pkgdir/etc/ld.so.conf.d/ + echo /usr/lib/fst > $pkgdir/etc/ld.so.conf.d/openfst.conf }