2015-08-01 20:54:33 +02:00
|
|
|
# Description: A daemon which implements the PPP protocol for internetworking over dialup lines
|
2017-02-04 18:27:39 +11:00
|
|
|
# URL: https://www.samba.org/ppp/
|
2015-08-01 20:54:33 +02:00
|
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
2021-01-06 11:55:02 +01:00
|
|
|
# Depends on: openssl libpcap
|
2015-08-01 20:54:33 +02:00
|
|
|
|
|
|
|
name=ppp
|
2021-01-06 11:55:02 +01:00
|
|
|
version=2.4.9
|
2020-02-18 17:36:31 +01:00
|
|
|
release=1
|
2021-01-06 11:55:02 +01:00
|
|
|
source=(https://ftp.samba.org/pub/ppp/$name-$version.tar.gz)
|
2015-08-01 20:54:33 +02:00
|
|
|
|
|
|
|
build () {
|
2021-01-06 11:55:02 +01:00
|
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr --sysconfdir=/etc --cflags="$CFLAGS"
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG/usr INSTROOT=$PKG install install-etcppp
|
|
|
|
chmod +w -R $PKG
|
2015-08-01 20:54:33 +02:00
|
|
|
}
|