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.
38 lines
655 B
TOML
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"
|