bf96e50e44
- 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.
37 lines
934 B
TOML
37 lines
934 B
TOML
[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" ]
|
|
|