Ports: Add lynx port

This commit is contained in:
René Hickersberger 2023-06-23 15:42:14 +02:00 committed by Andreas Kling
parent 934cb601c2
commit b0ef956fe0
Notes: sideshowbarker 2024-07-17 06:45:52 +09:00
2 changed files with 11 additions and 0 deletions

View file

@ -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/ |

10
Ports/lynx/package.sh Executable file
View file

@ -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')