internal/rosa/package: azalea proposal

This commit is contained in:
mae
2026-05-23 20:50:35 -05:00
parent 689f972976
commit 0307f781a2
75 changed files with 2854 additions and 2879 deletions

View File

@@ -1,44 +1,45 @@
package libcap {
description = "a library for getting and setting POSIX.1e draft 15 capabilities";
website = "https://sites.google.com/site/fullycapable";
anitya = 1569;
//az:schema mbf
version* = "2.78";
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;
};
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;
writable
chmod
env = [
"prefix=/system",
"lib=lib",
];
"prefix=/system"
"lib=lib"
]
early = "\nln -s ../system/bin/bash /bin/\n";
early = "ln -s ../system/bin/bash /bin/"
exec = make {
skipConfigure = true;
inPlace = true;
skipConfigure
inPlace
make = [
"CC=cc",
"all",
];
"CC=cc"
"all"
]
check = [
"CC=cc",
"test",
];
};
"CC=cc"
"test"
]
}
inputs = [
bash,
diffutils,
];
bash
diffutils
]
}