All checks were successful
Test / Create distribution (push) Successful in 2m40s
Test / Sandbox (push) Successful in 2m46s
Test / ShareFS (push) Successful in 3m47s
Test / Sandbox (race detector) (push) Successful in 5m28s
Test / Hakurei (race detector) (push) Successful in 6m47s
Test / Hakurei (push) Successful in 2m41s
Test / Flake checks (push) Successful in 1m31s
This replaces the '*' placeholder with a less confusing '#'. Signed-off-by: Ophestra <cat@gensokyo.uk>
34 lines
660 B
Go
34 lines
660 B
Go
package dtc {
|
|
description = "The Device Tree Compiler";
|
|
website = "https://git.kernel.org/pub/scm/utils/dtc/dtc.git";
|
|
anitya = 16911;
|
|
|
|
version# = "1.7.2";
|
|
source = remoteTar {
|
|
url = "https://git.kernel.org/pub/scm/utils/dtc/dtc.git/snapshot/"+
|
|
"dtc-v"+version+".tar.gz";
|
|
checksum = "vUoiRynPyYRexTpS6USweT5p4SVHvvVJs8uqFkkVD-YnFjwf6v3elQ0-Etrh00Dt";
|
|
compress = gzip;
|
|
};
|
|
|
|
// works around buggy test:
|
|
// fdtdump-runtest.sh /usr/src/dtc/tests/fdtdump.dts
|
|
writable = true;
|
|
chmod = true;
|
|
|
|
exec = meson {
|
|
setup = {
|
|
"Dyaml": "disabled";
|
|
"Dstatic-build": "true";
|
|
};
|
|
};
|
|
|
|
inputs = [
|
|
flex,
|
|
bison,
|
|
m4,
|
|
coreutils,
|
|
diffutils,
|
|
];
|
|
}
|