2007-11-16 13:00:40 +11:00
|
|
|
# Description: Text-based web browser.
|
2020-06-01 15:45:48 +00:00
|
|
|
# URL: https://lynx.invisible-island.net/
|
2023-03-03 16:14:00 -05:00
|
|
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
2007-11-16 13:00:40 +11:00
|
|
|
# Depends on: ncurses openssl zlib
|
2006-10-22 10:18:12 +02:00
|
|
|
|
|
|
|
name=lynx
|
2023-03-03 16:14:00 -05:00
|
|
|
version=2.9.0dev.12
|
2020-06-14 23:41:34 +10:00
|
|
|
release=1
|
2023-03-03 16:14:00 -05:00
|
|
|
source=(https://invisible-mirror.net/archives/lynx/tarballs/${name}${version}.tar.bz2)
|
2006-10-22 10:18:12 +02:00
|
|
|
|
|
|
|
build() {
|
2023-03-03 16:14:00 -05:00
|
|
|
cd ${name}${version}
|
2018-05-14 19:44:26 +10:00
|
|
|
|
2006-10-22 10:18:12 +02:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--enable-color-style \
|
2023-03-03 16:14:00 -05:00
|
|
|
--enable-default-colors \
|
|
|
|
--disable-nls \
|
2006-10-22 10:18:12 +02:00
|
|
|
--enable-ipv6 \
|
2023-03-03 16:14:00 -05:00
|
|
|
--with-ssl \
|
2015-12-01 21:09:16 +11:00
|
|
|
--with-zlib
|
2007-11-16 13:00:40 +11:00
|
|
|
|
2006-10-22 10:18:12 +02:00
|
|
|
make
|
2020-06-14 23:41:34 +10:00
|
|
|
make DESTDIR=$PKG install
|
2006-10-22 10:18:12 +02:00
|
|
|
}
|