summaryrefslogtreecommitdiff
path: root/community-testing/libnetfilter_cthelper/PKGBUILD
blob: 3a051836e7f286d2d69b67783a5e6b6fb17d8b4c (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
# $Id: PKGBUILD 77374 2012-10-09 09:35:39Z seblu $
# Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org>

pkgname=libnetfilter_cthelper
pkgver=1.0.0
pkgrel=1
pkgdesc='Library for the connection tracking helper infrastructure'
arch=('i686' 'x86_64')
url='http://www.netfilter.org/projects/libnetfilter_cthelper/'
license=('GPL2')
depends=('libmnl')
options=('!libtool')
source=("http://www.netfilter.org/projects/$pkgname/files/$pkgname-$pkgver.tar.bz2")
md5sums=('b2efab1a3a198a5add448960ba011acd')

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

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

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