47993f6730
- Added Nuklear GUI library with build script and configuration. - Introduced OpenH264 encoder/decoder with build configuration. - Added PortAudio library for audio I/O with custom build script. - Included Python Execnet for multi-Python deployment. - Added Pytest Xdist plugin for distributed testing. - Introduced Shaderc for shader compilation tools. - Added Snappy compression library with necessary patches and configuration. - Included SoundTouch audio processing library with build configuration. - Added SRT library for secure reliable transport. - Introduced VapourSynth video processing framework with configuration. - Added Vid.stab for video stabilization. - Included WebRTC Audio Processing library with build configuration. - Added X264 video encoding library with patches for POSIX compliance. - Introduced X265 video encoder with build configuration. - Added XKeyboard Config for X keyboard configuration files. - Included Xorg XKBComp for keyboard description compilation. - Added Xvidcore MPEG-4 video codec library with configuration. - Introduced ZeroMQ messaging system with patches and build configuration. - Added Zimg library for scaling and colorspace conversion.
38 lines
946 B
TOML
38 lines
946 B
TOML
[build]
|
|
type = "autotools"
|
|
|
|
[build.flags]
|
|
configure = [
|
|
"--enable-nasm",
|
|
"--enable-shared",
|
|
"--enable-mp3rtp",
|
|
]
|
|
|
|
[dependencies]
|
|
build = ["nasm"]
|
|
runtime = [
|
|
"glibc",
|
|
"ncurses",
|
|
"mpg123"
|
|
]
|
|
|
|
[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" ]
|
|
|