summaryrefslogtreecommitdiffstats
path: root/abs/extra/community/tre/PKGBUILD
blob: b7d82ebe3c9bada3b4e745628b69ae7cd332d01a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Contributor: Igor Galic<i.galic@gmail.com>
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de
pkgname=tre
pkgver=0.7.5
pkgrel=4
arch=('i686' 'x86_64')
pkgdesc="POSIX compliant regexp matching library. It includes agrep for aproximate (fuzzy) grepping."
url="http://laurikari.net/tre/index.html"
license=('GPL')
source=(http://laurikari.net/tre/$pkgname-$pkgver.tar.bz2)
md5sums=('e72e5c94008865cf720992a0b25d6e89')

build() {
  cd $srcdir/$pkgname-$pkgver
  ./configure --prefix=/usr --enable-static || return 1
  make || return 1
  make DESTDIR=$pkgdir install || return 1
}