forked from ports/contrib
19 lines
493 B
Plaintext
19 lines
493 B
Plaintext
# Description: A library that provides the programming interface to the fine-grain connection tracking timeout infrastructure
|
|
# URL: https://www.netfilter.org/projects/libnetfilter_cttimeout
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: libmnl
|
|
|
|
name=libnetfilter_cttimeout
|
|
version=1.0.1
|
|
release=1
|
|
source=(https://www.netfilter.org/projects/$name/files/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|