mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
Ports: Add lynx port
This commit is contained in:
parent
934cb601c2
commit
b0ef956fe0
Notes:
sideshowbarker
2024-07-17 06:45:52 +09:00
Author: https://github.com/renehsz 🔰 Commit: https://github.com/SerenityOS/serenity/commit/b0ef956fe0 Pull-request: https://github.com/SerenityOS/serenity/pull/19581
2 changed files with 11 additions and 0 deletions
|
@ -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
10
Ports/lynx/package.sh
Executable 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')
|
Loading…
Reference in a new issue