contrib/lynx/Pkgfile

26 lines
516 B
Plaintext
Raw Normal View History

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/
2014-11-10 23:28:07 +11:00
# Maintainer: Danny Rawlins, crux at romster dot me
2007-11-16 13:00:40 +11:00
# Depends on: ncurses openssl zlib
2006-10-22 10:18:12 +02:00
name=lynx
2020-06-14 23:41:34 +10:00
version=2.8.9
_relver=${version}rel.1
release=1
source=(https://invisible-mirror.net/archives/lynx/tarballs/${name}${_relver}.tar.bz2)
2006-10-22 10:18:12 +02:00
build() {
2020-06-14 23:41:34 +10:00
cd ${name}${_relver}
2018-05-14 19:44:26 +10:00
2006-10-22 10:18:12 +02:00
./configure \
--prefix=/usr \
--disable-nls \
--enable-color-style \
--enable-ipv6 \
2013-05-29 22:07:27 +10:00
--with-ssl=/usr/lib \
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
}