24 lines
795 B
Bash
24 lines
795 B
Bash
|
# Template file for 'xl2tpd'
|
||
|
pkgname=xl2tpd
|
||
|
version=1.3.6
|
||
|
revision=1
|
||
|
makedepends="libpcap-devel kernel-libc-headers"
|
||
|
short_desc="Open source implementation of the Layer 2 Tunnelling Protocol"
|
||
|
maintainer="Duncaen <duncaen@voidlinux.eu>"
|
||
|
license="GPL-2"
|
||
|
homepage="https://www.xelerance.com/services/software/xl2tpd/"
|
||
|
distfiles="https://github.com/xelerance/xl2tpd/archive/v${version}.tar.gz"
|
||
|
checksum=49b069aa8d873e1d8f615ccc4212351e427bf681ba453fdd211256a8345bb7fb
|
||
|
|
||
|
do_build() {
|
||
|
sed -i -e 's;# include <bsd/signal.h>;;' xl2tpd.c
|
||
|
make LDFLAGS="${LDFLAGS}" KERNELSRC="${XBPS_CROSS_BASE}/usr"
|
||
|
}
|
||
|
|
||
|
do_install() {
|
||
|
make DESTDIR="${DESTDIR}" PREFIX=/usr SBINDIR="${DESTDIR}/usr/bin" install
|
||
|
vsv xl2tpd
|
||
|
vinstall examples/xl2tpd.conf 644 etc/xl2tpd
|
||
|
vinstall "${FILESDIR}/options.l2tp" 644 etc/ppp
|
||
|
}
|