Add TOML configuration files for various packages

- Introduced build configurations for graphene, gst-plugins-bad, gst-plugins-base, gstreamer, gtk4, iso-codes, jbig2dec, libepoxy, libsoup3, libtheora, libxpm, lynx, md4c, openjpeg2, poppler-data, python-attrs, python-automat, python-constantly, python-hyperlink, python-incremental, python-twisted, python-versioneer, python-zope-interface, qpdf, sdl12-compat, tinysparql, unixodbc, vmaf, xcb-util-cursor, xcb-util-image, xcb-util-renderutil, xcb-util-wm, xcb-util, xdg-utils.
- Each package includes build type, dependencies, runtime requirements, and source URLs.
- Added necessary post-install scripts and configurations where applicable.
This commit is contained in:
2026-03-29 02:51:06 -05:00
parent 45bcdeddaf
commit 2bb4d5187c
69 changed files with 2774 additions and 54 deletions
+44
View File
@@ -0,0 +1,44 @@
[build]
type = "autotools"
[build.flags]
configure = [
"--with-ssl=/usr",
"--enable-externs",
"--enable-default-colors",
"--enable-nls",
"--enable-ipv6",
]
post_install = [
'sed -i -e "s|^HELPFILE.*$|HELPFILE:file:///usr/share/doc/lynx/lynx_help/lynx_help_main.html|" "$DESTDIR/etc/lynx.cfg"',
'install -d "$DESTDIR/usr/share/doc/lynx"',
'cp -rf lynx_help "$DESTDIR/usr/share/doc/lynx"',
]
skip_tests = true
use_lto = false
keep = [ "etc/lynx.cfg" ]
source_subdir = "lynx2.9.2"
[dependencies]
runtime = [
"brotli",
"bzip2",
"glibc",
"libidn2",
"zlib-ng",
"openssl",
"ncurses",
]
[package]
description = "text browser for the World Wide Web"
homepage = "https://lynx.invisible-island.net/"
license = "GPL-2.0-only"
name = "lynx"
version = "2.9.2"
[[source]]
extract_dir = "$name-$version"
sha256 = "b2:5a8b78c11413e9e1d62f1a065c1e389cd1ddb0aad4a12d974cfef0b95d2c5d3f5e45097c33da2bf7fc41b615be6f883c951e98bd3d6f426bd3238e3a4e28fdae"
url = "https://invisible-mirror.net/archives/lynx/tarballs/lynx$version.tar.gz"
post_extract = [ "ls" ]