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>
29 lines
641 B
Go
29 lines
641 B
Go
package libucontext {
|
|
description = "ucontext implementation featuring glibc-compatible ABI";
|
|
website = "https://github.com/kaniini/libucontext";
|
|
anitya = 17085;
|
|
|
|
version# = "1.5.1";
|
|
source = remoteGitHub {
|
|
suffix = "kaniini/libucontext";
|
|
tag = "libucontext-"+version;
|
|
checksum = "mUgeyJknjMxT-5fORzz-rqhZfP3Y7EZGBhOwvhuX7MsF4Pk9wkuwtrLf5IML-jWu";
|
|
};
|
|
|
|
// uses source tree as scratch space
|
|
writable = true;
|
|
chmod = true;
|
|
enterSource = true;
|
|
|
|
exec = make {
|
|
omitDefaults = true;
|
|
skipConfigure = true;
|
|
inPlace = true;
|
|
|
|
make = [
|
|
"ARCH=" + linuxArch,
|
|
];
|
|
install = "make prefix=/system DESTDIR=/work install";
|
|
};
|
|
}
|