forked from ports/contrib
26 lines
519 B
Plaintext
26 lines
519 B
Plaintext
# Description: Text-based web browser.
|
|
# URL: https://lynx.invisible-island.net/
|
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
|
# Depends on: ncurses openssl zlib
|
|
|
|
name=lynx
|
|
version=2.9.0dev.12
|
|
release=1
|
|
source=(https://invisible-mirror.net/archives/lynx/tarballs/${name}${version}.tar.bz2)
|
|
|
|
build() {
|
|
cd ${name}${version}
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--enable-color-style \
|
|
--enable-default-colors \
|
|
--disable-nls \
|
|
--enable-ipv6 \
|
|
--with-ssl \
|
|
--with-zlib
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|