summaryrefslogtreecommitdiffstats
path: root/abs/extra/community/libnetfilter_queue/PKGBUILD
blob: 986c9163dd664799587d80333abdc4b0b9f31f75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Contributor: Kevin Edmonds <edmondskevin@hotmail.com>
# Maintainer: Filip Wojciechowski, filip at loka dot pl
pkgname=libnetfilter_queue
pkgver=0.0.16
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=('b36664e6cd39edbfe46b416a86118add')

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