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.
40 lines
829 B
TOML
40 lines
829 B
TOML
[build]
|
|
type = "autotools"
|
|
|
|
[build.flags]
|
|
skip_tests = true
|
|
no-remove-static = true
|
|
|
|
[dependencies]
|
|
build = [
|
|
"python",
|
|
"xmlto",
|
|
]
|
|
runtime = ["glibc"]
|
|
|
|
[package]
|
|
description = "rewrite of NASM to allow for multiple syntax supported (NASM, TASM, GAS, etc.)"
|
|
homepage = "https://github.com/yasm/yasm"
|
|
license = [
|
|
"Artistic-1.0-Perl",
|
|
"BSD-2-Clause OR BSD-3-Clause",
|
|
"GPL-2.0-only",
|
|
"LGPL-2.1-only",
|
|
]
|
|
name = "yasm"
|
|
version = "1.3.0"
|
|
|
|
[[source]]
|
|
extract_dir = "$name-$version"
|
|
post_extract = [
|
|
"echo $version > version",
|
|
"autoreconf -vfi",
|
|
]
|
|
url = "https://github.com/yasm/yasm/releases/download/v$version/yasm-$version.tar.gz"
|
|
patches = [
|
|
"0001-elf-note-gnu-property.patch",
|
|
"0002-no-ac-header-stdc.patch",
|
|
"0003-remove-date-version-strings.patch",
|
|
"0004-gcc15-c23-bitvect.patch",
|
|
]
|