contrib/lynx/Pkgfile

26 lines
516 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/
2014-11-10 13:28:07 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
2007-11-16 03:00:40 +01:00
# Depends on: ncurses openssl zlib
2006-10-22 10:18:12 +02:00
name=lynx
2020-06-14 15:41:34 +02: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 15:41:34 +02:00
cd ${name}${_relver}
2018-05-14 11:44:26 +02:00
2006-10-22 10:18:12 +02:00
./configure \
--prefix=/usr \
--disable-nls \
--enable-color-style \
--enable-ipv6 \
2013-05-29 14:07:27 +02:00
--with-ssl=/usr/lib \
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
}