35 lines
815 B
TOML
35 lines
815 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.git#v$version"
|
|
cherry_pick = [ "0799f381d513e18f404654047fa1b412084968c8", "3e74376b5653102a3957f59005969fcdbbe5a89d", "61e374f24718975e8175f048e70afaaf0c4771a9", "64ef740eb262f329e55eebadf2ce276b146d44e9" ]
|