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.
28 lines
526 B
TOML
28 lines
526 B
TOML
[build]
|
|
type = "autotools"
|
|
|
|
[build.flags]
|
|
configure = [
|
|
"--disable-static",
|
|
"--enable-shared",
|
|
]
|
|
skip_tests = true
|
|
|
|
[dependencies]
|
|
runtime = [
|
|
"glibc",
|
|
"libogg",
|
|
]
|
|
|
|
[package]
|
|
description = "Reference implementation of the Ogg Vorbis audio format"
|
|
homepage = "https://www.xiph.org/vorbis/"
|
|
license = "BSD-3-Clause"
|
|
name = "libvorbis"
|
|
version = "1.3.7"
|
|
|
|
[[source]]
|
|
extract_dir = "$name-$version"
|
|
post_extract = ["./autogen.sh"]
|
|
url = "https://github.com/xiph/vorbis.git#0c55fa38933fd4bdb7db7c298b27e7bf2f2c5e98"
|