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.
32 lines
921 B
TOML
32 lines
921 B
TOML
[build]
|
|
type = "autotools"
|
|
|
|
[build.flags]
|
|
configure = ["--enable-shared"]
|
|
post_compile = [
|
|
"cc $CFLAGS $CPPFLAGS -fpic -Iinclude/lzo -o minilzo/minilzo.o -c minilzo/minilzo.c",
|
|
"cc $LDFLAGS -shared -o libminilzo.so.0 -Wl,-soname,libminilzo.so.0 minilzo/minilzo.o",
|
|
]
|
|
post_install = [
|
|
"install -m 755 libminilzo.so.0 $DESTDIR/usr/lib",
|
|
"install -p -m 644 minilzo/minilzo.h $DESTDIR/usr/include/lzo",
|
|
"cd $DESTDIR/usr/lib",
|
|
"ln -s libminilzo.so.0 libminilzo.so",
|
|
]
|
|
skip_tests = true
|
|
|
|
[dependencies]
|
|
runtime = ["glibc"]
|
|
|
|
[package]
|
|
description = "Portable lossless data compression library"
|
|
homepage = "https://www.oberhumer.com/opensource/lzo"
|
|
license = "GPL-2.0-or-Later"
|
|
name = "lzo"
|
|
version = "2.10"
|
|
|
|
[[source]]
|
|
extract_dir = "$name-$version"
|
|
sha256 = "c0f892943208266f9b6543b3ae308fab6284c5c90e627931446fb49b4221a072"
|
|
url = "https://www.oberhumer.com/opensource/lzo/download/lzo-$version.tar.gz"
|