Add various packages and patches for build system improvements

- Introduced valgrind with a patch to respect flags and updated its configuration.
- Added Vulkan ICD loader with CMake build configuration.
- Implemented Waf build system with a custom build script and configuration.
- Included Wayland protocols with Meson build system.
- Added xcb-util-keysyms with autotools configuration.
- Introduced Yasm with multiple patches for compatibility and improvements.
- Added Yelp tools and XSL with Meson build configurations and necessary patches for POSIX compliance.
This commit is contained in:
2026-03-22 23:25:50 -05:00
parent a0e45c65d3
commit bf96e50e44
144 changed files with 7131 additions and 45 deletions
+36
View File
@@ -0,0 +1,36 @@
[build]
type = "autotools"
[build.flags]
configure = [
"--enable-nasm",
"--enable-shared",
"--disable-mp3rtp",
]
[dependencies]
build = ["nasm"]
runtime = [
"glibc",
"ncurses",
]
[package]
description = "high quality MPEG Audio Layer III (MP3) encoder"
homepage = "http://lame.sourceforge.net/"
license = "LGPL-2.0-only"
name = "lame"
version = "3.100"
[[source]]
extract_dir = "$name-$version"
sha256 = "b2:6954d30cfd3951ea07762ba5dd7ff27038b78455f423099a225ebf748abddf9970e444456ca5a6179bd381e2205b32293392cb757c203901674860710fe2c183"
url = "https://sourceforge.net/projects/lame/files/lame/$version/lame-$version.tar.gz"
patches = [ "lame-symbols.patch", "lame-cbr-abr-quality-settings-clamp.patch" ]
post_extract = [
"sed -i -e '/^lame_init_old$/d' -e '/^hip_finish_pinfo$/d' include/libmp3lame.sym"
]
[[manual_sources]]
files = [ "lame-symbols.patch", "lame-cbr-abr-quality-settings-clamp.patch" ]