1
0
forked from ports/contrib
contrib-tek/lynx/Pkgfile

30 lines
663 B
Plaintext
Raw Normal View History

2007-11-16 13:00:40 +11:00
# Description: Text-based web browser.
# URL: http://lynx.isc.org/
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
2015-11-13 15:26:06 +11:00
version=2.8.8-p2
2018-05-14 19:44:26 +10:00
release=2
source=(http://invisible-mirror.net/archives/lynx/tarballs/lynx2.8.8rel.2.tar.bz2
lynx-2.8.8rel.2-openssl_1.1.0-1.patch
lynx-2.8.8rel.2-ncurses_6.1-1.patch)
2006-10-22 10:18:12 +02:00
build() {
2015-11-13 15:26:06 +11:00
cd lynx2-8-8
2007-11-16 13:00:40 +11:00
2018-05-14 19:44:26 +10:00
patch -p1 -i $SRC/lynx-2.8.8rel.2-openssl_1.1.0-1.patch
patch -p1 -i $SRC/lynx-2.8.8rel.2-ncurses_6.1-1.patch
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
2008-09-11 20:52:26 +10:00
make -j 1 DESTDIR=$PKG install
2006-10-22 10:18:12 +02:00
}