summaryrefslogtreecommitdiff
path: root/community/libnetfilter_queue/PKGBUILD
blob: 9490172473a50b5b4e0b158cd80d27b3f5b2e93f (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
25
26
27
28
# $Id: PKGBUILD 99865 2013-10-31 02:10:04Z allan $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org>
# Contributor: Kevin Edmonds <edmondskevin@hotmail.com>
# Maintainer: Filip Wojciechowski, filip at loka dot pl

pkgname=libnetfilter_queue
pkgver=1.0.2
pkgrel=1
pkgdesc='Userspace API to packets that have been queued by the kernel packet filter'
arch=('i686' 'x86_64')
url='http://www.netfilter.org/projects/libnetfilter_queue/'
license=('GPL')
depends=('libnfnetlink' 'libmnl')
source=("http://www.netfilter.org/projects/$pkgname/files/$pkgname-$pkgver.tar.bz2")
md5sums=('df09befac35cb215865b39a36c96a3fa')

build() {
  cd $pkgname-$pkgver
  ./configure --prefix=/usr
}

package() {
  cd $pkgname-$pkgver
  make DESTDIR="$pkgdir" install
}

# vim:set ts=2 sw=2 et: