ports: Add lynx port

I have had this for a while but apparently never commited :D
This commit is contained in:
2025-04-22 01:44:49 +03:00
parent 2632507980
commit 32d543943b
2 changed files with 25 additions and 0 deletions

13
ports/lynx/build.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/bash ../install.sh
NAME='lynx'
VERSION='2.9.2'
DOWNLOAD_URL="https://invisible-island.net/archives/lynx/tarballs/lynx$VERSION.tar.gz#99f8f28f860094c533100d1cedf058c27fb242ce25e991e2d5f30ece4457a3bf"
TAR_CONTENT="lynx$VERSION"
DEPENDENCIES=('ncurses' 'ca-certificates' 'openssl' 'zlib')
CONFIGURE_OPTIONS=(
'--without-system-type'
'--with-sceen=ncurses'
'--with-ssl'
'--with-zlib'
)