diff options
author | Andreas Grapentin <andreas@grapentin.org> | 2019-02-10 11:37:45 +0100 |
---|---|---|
committer | Andreas Grapentin <andreas@grapentin.org> | 2019-02-10 11:37:45 +0100 |
commit | 15f77009c7a5c47704dbf0b40f8a77cc358e08cc (patch) | |
tree | 88b26decc2f761562330c557ccefc0d3713b707d /pcr/lttoolbox | |
parent | b0824c408f48b44802c5cae146d9ea3aaa5229c1 (diff) | |
download | abslibre-15f77009c7a5c47704dbf0b40f8a77cc358e08cc.tar.gz abslibre-15f77009c7a5c47704dbf0b40f8a77cc358e08cc.tar.bz2 abslibre-15f77009c7a5c47704dbf0b40f8a77cc358e08cc.zip |
pcr/lttoolbox: updated to 3.5.0
Diffstat (limited to 'pcr/lttoolbox')
-rw-r--r-- | pcr/lttoolbox/PKGBUILD | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/pcr/lttoolbox/PKGBUILD b/pcr/lttoolbox/PKGBUILD index 612972171..644b6c2b4 100644 --- a/pcr/lttoolbox/PKGBUILD +++ b/pcr/lttoolbox/PKGBUILD @@ -1,29 +1,23 @@ # Contributor (AUR): Kevin Brubeck Unhammer <unhammer@fsfe.org> # Maintainer (AUR): Kevin Brubeck Unhammer <unhammer@fsfe.org> -# parabola changes and rationale: -# no changes. - - pkgname=lttoolbox -pkgver=3.4.0 +pkgver=3.5.0 pkgrel=1 +arch=('i686' 'x86_64' 'armv7h') pkgdesc="Handles lexical processing, morphological analysis and generation of words in natural languages using fast finite state transducers." -url="http://wiki.apertium.org/wiki/Lttoolbox" +url="https://github.com/apertium/lttoolbox" license=('GPL') -makedepends=('pkgconfig') +makedepends=('pkgconf') depends=('libxml2' 'gcc-libs') options=('!libtool') -arch=('i686' 'x86_64' 'armv7h') -source=(https://github.com/apertium/lttoolbox/archive/v${pkgver}.tar.gz) -md5sums=('4e6b10fafd2576e7e3d8eb0e74fbc221') -sha256sums=('dbed7e7207c2eb1c2c144828997a1eb95b202bf93a101d17ca5bf4998f3d2dad') +source=(https://github.com/apertium/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz) +sha256sums=('cbfc6e38ba995d80114a250f9756bd28708e9b3510bde09fe7f91e0a83bbc623') build() { cd "$srcdir/$pkgname-$pkgver" - ./autogen.sh ./configure --prefix=/usr make } |