updated on Mon Jan 23 00:00:36 UTC 2012
[aur-mirror.git] / pynetfilter_conntrack / PKGBUILD
blobd6e6d3c2a20e5009e0700a2ccc2506fd6b9ed1d2
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: Ricardo 'richerVE' Hernández <richerve«at»archlinux.com.ve>
7 # Maintainer: Ricardo 'richerVE' Hernández <richerve«at»archlinux.com.ve>
8 pkgname=pynetfilter_conntrack
9 pkgver=0.4.2
10 pkgrel=1
11 pkgdesc="pynetfilter_conntrack is a Python binding of libnetfilter_conntrack. The binding is the file pynetfilter_conntrack.py and you have also a clone of conntrack program: conntrack.py."
12 arch=('i686' 'x86_64')
13 url="http://software.inl.fr/trac/wiki/pynetfilter_conntrack"
14 license=('GPL')
15 groups=()
16 depends=('libnetfilter_conntrack>=0.0.75' 'python' 'python-ipy')
17 makedepends=('python')
18 source=(http://cheeseshop.python.org/packages/source/p/$pkgname/$pkgname-0.4.2.tar.gz)
19 md5sums=('78be53e165f5851b31d2cbea4c8bd3f2')
21 build() {
22   cd "$srcdir/$pkgname-$pkgver"
23   python setup.py install --root=$pkgdir || return 1
26 # vim:set ts=2 sw=2 et: