core/ppp/Pkgfile

21 lines
613 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: A daemon which implements the PPP protocol for internetworking over dialup lines
# URL: http://www.samba.org/ppp/
# Maintainer: CRUX System Team, core-ports at crux dot nu
2006-02-23 16:26:10 +01:00
# Depends on: zlib, openssl
name=ppp
version=2.4.7
2014-02-20 17:39:50 +01:00
release=1
2006-12-03 12:57:22 +01:00
source=(http://ppp.samba.org/ftp/ppp/$name-$version.tar.gz \
2014-02-20 17:39:50 +01:00
$name-nofilter.patch)
2006-02-23 16:26:10 +01:00
build () {
cd $name-$version
2009-11-19 11:41:15 +01:00
patch -p1 -i $SRC/$name-nofilter.patch
2006-07-02 12:07:45 +02:00
./configure --prefix=/usr --sysconfdir=/etc
2006-02-23 16:26:10 +01:00
make
2010-06-27 14:30:41 +02:00
make -j1 INSTROOT=$PKG install install-etcppp
2006-07-02 12:07:45 +02:00
mv $PKG/usr/{share/man,man} && rm -r $PKG/usr/share
2006-02-23 16:26:10 +01:00
chmod +w -R $PKG
}