contrib/lynx/Pkgfile

26 lines
519 B
Plaintext
Raw Normal View History

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