summaryrefslogtreecommitdiff
path: root/pcr/lttoolbox/PKGBUILD
blob: 61297217138a879c9750faac2303b9ff71d8145c (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
# 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
pkgrel=1
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"
license=('GPL')
makedepends=('pkgconfig')
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')


build() {
  cd "$srcdir/$pkgname-$pkgver"

  ./autogen.sh
  ./configure --prefix=/usr
  make
}

package() {
  cd "$srcdir/$pkgname-$pkgver"

  make DESTDIR="$pkgdir/" install
}