summaryrefslogtreecommitdiff
path: root/community-testing/libnetfilter_cttimeout/PKGBUILD
blob: 53661d122bbb1fed535980f7d6174c236834c343 (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 71339 2012-05-27 00:57:37Z seblu $
# Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org>

pkgname=libnetfilter_cttimeout
pkgver=1.0.0
pkgrel=2
pkgdesc='Library for the connection tracking timeout infrastructure'
arch=('i686' 'x86_64')
url='http://www.netfilter.org/projects/libnetfilter_cttimeout/'
license=('GPL2')
depends=('libmnl' 'linux>=3.4')
options=('!libtool')
source=("http://www.netfilter.org/projects/$pkgname/files/$pkgname-$pkgver.tar.bz2")
md5sums=('7697437fc9ebb6f6b83df56a633db7f9')

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

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

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