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.
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
[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"
|
||||
Reference in New Issue
Block a user