2015-08-01 20:54:33 +02:00
|
|
|
# Description: A daemon which implements the PPP protocol for internetworking over dialup lines
|
2021-12-14 10:34:02 +01:00
|
|
|
# URL: https://www.samba.org/ppp/
|
|
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
|
|
# Depends on: libpcap openssl
|
2015-08-01 20:54:33 +02:00
|
|
|
|
|
|
|
name=ppp
|
2023-04-05 13:21:52 +02:00
|
|
|
version=2.5.0
|
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
|
2023-04-05 13:21:52 +02:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
--with-runtime-dir=/run/pppd
|
2021-01-06 11:55:02 +01:00
|
|
|
make
|
2023-04-05 13:21:52 +02:00
|
|
|
make DESTDIR=$PKG install
|
2015-08-01 20:54:33 +02:00
|
|
|
}
|