Files
SFG545 bf96e50e44 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.
2026-03-22 23:25:50 -05:00

38 lines
655 B
TOML

[build]
type = "cmake"
[build.flags]
build_dir = "build"
configure = [
"-G Ninja",
"-DBUILD_SHARED_LIBS=ON",
]
post_install = [ 'install -Dm 644 ogg.m4 -t $DESTDIR/usr/share/aclocal/' ]
build_32 = true
post_install-lib32 = [ 'true' ]
[dependencies]
build = [
"cmake",
"ninja",
]
runtime = ["glibc"]
[dependencies.lib32]
build = [
"cmake",
"ninja",
]
runtime = ["lib32-glibc"]
[package]
description = "Ogg bitstream and framing library"
homepage = "https://www.xiph.org/ogg/"
license = "BSD-3-Clause"
name = "libogg"
version = "1.3.6"
[[source]]
extract_dir = "$name-$version"
url = "https://github.com/xiph/ogg.git#v$version"