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>
45 lines
776 B
Go
45 lines
776 B
Go
package libcap {
|
|
description = "a library for getting and setting POSIX.1e draft 15 capabilities";
|
|
website = "https://sites.google.com/site/fullycapable";
|
|
anitya = 1569;
|
|
|
|
version# = "2.78";
|
|
source = remoteTar {
|
|
url = "https://git.kernel.org/pub/scm/libs/libcap/libcap.git/"+
|
|
"snapshot/libcap-"+version+".tar.gz";
|
|
checksum = "wFdUkBhFMD9InPnrBZyegWrlPSAg_9JiTBC-eSFyWWlmbzL2qjh2mKxr9Kx2a8ut";
|
|
compress = gzip;
|
|
};
|
|
|
|
// uses source tree as scratch space
|
|
writable = true;
|
|
chmod = true;
|
|
|
|
env = [
|
|
"prefix=/system",
|
|
"lib=lib",
|
|
];
|
|
|
|
early = "\nln -s ../system/bin/bash /bin/\n";
|
|
|
|
exec = make {
|
|
skipConfigure = true;
|
|
inPlace = true;
|
|
|
|
make = [
|
|
"CC=cc",
|
|
"all",
|
|
];
|
|
|
|
check = [
|
|
"CC=cc",
|
|
"test",
|
|
];
|
|
};
|
|
|
|
inputs = [
|
|
bash,
|
|
diffutils,
|
|
];
|
|
}
|