26 lines
604 B
Plaintext
26 lines
604 B
Plaintext
# Description: A port of KAME's IPsec utilities to the Linux-2.6
|
|
# URL: http://ipsec-tools.sourceforge.net/
|
|
# Maintainer: Mikhail Kolesnik, mike at openbunker dot org
|
|
# Depends on:
|
|
|
|
name=ipsec-tools
|
|
version=0.7.2
|
|
release=1
|
|
source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr \
|
|
--mandir=/usr/man \
|
|
--localstatedir=/var \
|
|
--enable-hybrid \
|
|
--enable-frag \
|
|
--enable-stats \
|
|
--enable-dpd \
|
|
--enable-natt \
|
|
--enable-adminport \
|
|
--enable-security-context=no
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|