Juergen Daubert
06d66d3e93
- new dependency libpcap - includes security fixes for CVE-2020-8597 and CVE-2015-3310
18 lines
504 B
Plaintext
18 lines
504 B
Plaintext
# Description: A daemon which implements the PPP protocol for internetworking over dialup lines
|
|
# URL: https://www.samba.org/ppp/
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
# Depends on: openssl libpcap
|
|
|
|
name=ppp
|
|
version=2.4.9
|
|
release=1
|
|
source=(https://ftp.samba.org/pub/ppp/$name-$version.tar.gz)
|
|
|
|
build () {
|
|
cd $name-$version
|
|
./configure --prefix=/usr --sysconfdir=/etc --cflags="$CFLAGS"
|
|
make
|
|
make DESTDIR=$PKG/usr INSTROOT=$PKG install install-etcppp
|
|
chmod +w -R $PKG
|
|
}
|