updated on Tue Jan 17 12:00:36 UTC 2012
[aur-mirror.git] / python-tre / PKGBUILD
blob0562a2599f0849ff4044db626689a66dc06343bc
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>
7 pkgname=python-tre
8 pkgver=0.8.0
9 pkgrel=2
10 pkgdesc="POSIX compliant regexp matching library with approximate matching support. Python module"
11 arch=(any)
12 url="http://laurikari.net/tre/index.html"
13 license=('BSD')
14 groups=()
15 depends=(python tre)
16 makedepends=()
17 optdepends=()
18 provides=()
19 conflicts=()
20 replaces=()
21 backup=()
22 options=()
23 install=
24 source=(http://laurikari.net/tre/tre-$pkgver.tar.bz2)
25 noextract=()
26 md5sums=('b4d3232593dadf6746f4727bdda20b41')
29 build() {
30   cd "$srcdir/tre-$pkgver"
32   ./configure --prefix=/usr
33   make || return 1
34   cd python
35   umask 022
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: