20 lines
465 B
Plaintext
20 lines
465 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: libpcap openssl
|
|
|
|
name=ppp
|
|
version=2.5.0
|
|
release=1
|
|
source=(https://ftp.samba.org/pub/ppp/$name-$version.tar.gz)
|
|
|
|
build () {
|
|
cd $name-$version
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--with-runtime-dir=/run/pppd
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|