1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # Contributor: Your Name <youremail@domain.com>
10 pkgdesc="POSIX compliant regexp matching library with approximate matching support. Python module"
12 url="http://laurikari.net/tre/index.html"
24 source=(http://laurikari.net/tre/tre-$pkgver.tar.bz2)
26 md5sums=('b4d3232593dadf6746f4727bdda20b41')
30 cd "$srcdir/tre-$pkgver"
32 ./configure --prefix=/usr
36 python setup.py install --root=$pkgdir/ --optimize=1 || return 1
37 install -D -m644 $srcdir/tre-$pkgver/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
40 # vim:set ts=2 sw=2 et: