20 lines
454 B
Plaintext
20 lines
454 B
Plaintext
|
# Description: client for the proprietary Microsoft Point-to-Point Tunneling Protocol
|
||
|
# URL: http://pptpclient.sf.net
|
||
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
||
|
#
|
||
|
# Depends on: ppp
|
||
|
|
||
|
name=pptp
|
||
|
version=1.7.2
|
||
|
release=1
|
||
|
source=(http://dl.sourceforge.net/pptpclient/$name-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd ${name}-$version
|
||
|
|
||
|
sed -i -e 's|usr/share/man|/usr/man|1' Makefile
|
||
|
|
||
|
make && make DESTDIR=$PKG install
|
||
|
rm -rf $PKG/usr/doc
|
||
|
}
|