updated on Thu Jan 26 00:18:00 UTC 2012
[aur-mirror.git] / timbl / PKGBUILD
blobe1888382a8cad7f98029ed4786b80d1d3838e324
1 # Maintainer: Bjorn Arild Maeland <bjorn.maeland at gmail dot com>
3 pkgname=timbl
4 pkgver=6.3.1
5 pkgrel=1
6 pkgdesc="Tilburg Memory-Based Learner"
7 arch=('i686' 'x86_64')
8 url="http://ilk.uvt.nl/timbl/"
9 license=('GPL')
10 depends=('gcc-libs' 'libxml2')
11 makedepends=('libtool' 'libstdc++5' 'autoconf')
12 install=timbl.install
13 options=(!libtool)
14 source=(http://ilk.uvt.nl/downloads/pub/software/${pkgname}-${pkgver}.tar.gz)
15 noextract=()
16 md5sums=('9a5dc99b81cd87837d93ca83d25c74e2')
18 build() {
19   cd $srcdir/$pkgname-$pkgver
20   # Let's skip the init stuff. It only works for Debian-like systems, and I'm
21   # currently too lazy to create a patch for it.
22   sed -i 's/docs init/docs/' Makefile.{in,am} || return 1
23   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
24   make || return 1
25   make DESTDIR=$pkgdir install || return 1