summaryrefslogtreecommitdiff
path: root/community/libnetfilter_queue/PKGBUILD
blob: c4b25ba9c860e272828f999d7bcbdba533480e9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# $Id: PKGBUILD 21392 2010-07-16 11:56:31Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Kevin Edmonds <edmondskevin@hotmail.com>
# Maintainer: Filip Wojciechowski, filip at loka dot pl

pkgname=libnetfilter_queue
pkgver=1.0.0
pkgrel=1
pkgdesc="userspace library providing an API to packets that have been queued by the kernel packet filter"
arch=('i686' 'x86_64')
url="http://www.netfilter.org/projects/libnetfilter_queue/index.html"
license=('GPL')
depends=(libnfnetlink)
makedepends=(pkgconfig)
options=('!libtool')
source=(http://www.netfilter.org/projects/$pkgname/files/$pkgname-$pkgver.tar.bz2)
md5sums=('af6a9ea350f63a13609bc3b47b5c395c')

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