2007-11-16 13:00:40 +11:00
|
|
|
# Description: Text-based web browser.
|
|
|
|
# URL: http://lynx.isc.org/
|
2008-03-26 13:45:31 +11:00
|
|
|
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
|
2007-11-16 13:00:40 +11:00
|
|
|
# Packager: Mark Rosenstand, mark at borkware dot net
|
|
|
|
# Depends on: ncurses openssl zlib
|
2006-10-22 10:18:12 +02:00
|
|
|
|
|
|
|
name=lynx
|
|
|
|
version=2.8.6
|
2007-06-01 19:53:10 +02:00
|
|
|
release=3
|
2006-10-22 10:18:12 +02:00
|
|
|
source=(http://lynx.isc.org/lynx$version/lynx$version.tar.bz2)
|
|
|
|
|
|
|
|
build() {
|
2007-11-16 13:00:40 +11:00
|
|
|
cd lynx${version//./-}
|
|
|
|
|
2006-10-22 10:18:12 +02:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--disable-nls \
|
|
|
|
--enable-color-style \
|
|
|
|
--enable-ipv6 \
|
2007-11-16 13:00:40 +11:00
|
|
|
--with-ssl \
|
2006-10-22 10:18:12 +02:00
|
|
|
--with-zlib
|
2007-11-16 13:00:40 +11:00
|
|
|
|
2006-10-22 10:18:12 +02:00
|
|
|
make
|
2008-09-11 20:52:26 +10:00
|
|
|
make -j 1 DESTDIR=$PKG install
|
2006-10-22 10:18:12 +02:00
|
|
|
}
|
2007-11-16 13:00:40 +11:00
|
|
|
|