summaryrefslogtreecommitdiff
path: root/community/libnetfilter_cttimeout/PKGBUILD
blob: fb0f4d967d28063450298ec0a4d9da469e1a86d6 (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 72544 2012-06-16 15:53:38Z seblu $
# Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org>

pkgname=libnetfilter_cttimeout
pkgver=1.0.0
pkgrel=3
pkgdesc='Library for the connection tracking timeout infrastructure'
arch=('i686' 'x86_64' 'mips64el')
url='http://www.netfilter.org/projects/libnetfilter_cttimeout/'
license=('GPL2')
depends=('libmnl')
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: