opt/wvdial/Pkgfile

26 lines
728 B
Plaintext
Raw Normal View History

2006-02-23 18:13:51 +01:00
# Description: Weave Dial - PPP dialer
# URL: http://open.nit.ca/wiki/?page=WvDial
2006-09-07 09:11:14 +02:00
# Maintainer: J<>rgen Daubert, juergen dot daubert at t-online dot de
2006-02-23 18:13:51 +01:00
# Depends on: ppp, openssl
name=wvdial
2007-07-22 11:39:16 +02:00
version=1.60
release=1
source=(http://alumnit.ca/download/$name-$version.tar.gz \
2007-07-22 11:39:16 +02:00
http://wvstreams.googlecode.com/files/wvstreams-4.4.tar.gz \
$name-$version.patch)
2006-02-23 18:13:51 +01:00
build() {
2007-07-22 11:39:16 +02:00
cd wvstreams-4.4
2006-02-23 18:13:51 +01:00
./configure --prefix=/usr \
--enable-verbose \
2007-07-22 11:39:16 +02:00
--without-{pam,tcl,qt}
2006-02-23 18:13:51 +01:00
make
ln -s ../xplc/include/xplc include/xplc
cd $SRC/$name-$version
patch -p1 < $SRC/$name-$version.patch
2007-07-22 11:39:16 +02:00
make CXXOPTS="$CXXFLAGS" WVS=$SRC/wvstreams-4.4
2006-02-23 18:13:51 +01:00
make DESTDIR=$PKG install
}