diff --git a/Ports/AvailablePorts.md b/Ports/AvailablePorts.md index 0bf1efb8e1..f405a515ab 100644 --- a/Ports/AvailablePorts.md +++ b/Ports/AvailablePorts.md @@ -168,6 +168,7 @@ This list is also available at [ports.serenityos.net](https://ports.serenityos.n | [`luajit`](luajit/) | LuaJIT | 2.1.0-beta3 | https://luajit.org/luajit.html | | [`luarocks`](luarocks/) | LuaRocks | 3.8.0 | https://luarocks.org/ | | [`lure`](lure/) | Lure of the Temptress | 1.1 | https://www.scummvm.org/games/#games-lure | +| [`lynx`](lynx/) | Lynx web browser | 2.8.9rel.1 | https://lynx.invisible-island.net/ | | [`lz4`](lz4/) | lz4 - Extremely Fast Compression algorithm | 1.9.4 | https://github.com/lz4/lz4 | | [`lzo`](lzo/) | LZO lossless data compression algorithm | 2.10 | https://www.oberhumer.com/opensource/lzo/ | | [`lzop`](lzop/) | LZO lossless data compression utility | 1.04 | https://www.lzop.org/ | diff --git a/Ports/lynx/package.sh b/Ports/lynx/package.sh new file mode 100755 index 0000000000..15fda8dda5 --- /dev/null +++ b/Ports/lynx/package.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env -S bash ../.port_include.sh +port='lynx' +version='2.8.9rel.1' +files="https://invisible-island.net/archives/lynx/tarballs/lynx${version}.tar.bz2 lynx${version}.tar.bz2 387f193d7792f9cfada14c60b0e5c0bff18f227d9257a39483e14fa1aaf79595" +workdir="lynx${version}" +auth_type='sha256' +depends=('ncurses' 'openssl' 'zlib') +useconfigure='true' +use_fresh_config_sub='true' +configopts=('--without-system-type' '--with-screen=ncurses' '--with-ssl' '--with-zlib')