Test / Create distribution (push) Successful in 1m0s
Test / Sandbox (push) Successful in 2m56s
Test / Hakurei (push) Successful in 4m42s
Test / Sandbox (race detector) (push) Successful in 5m56s
Test / Hakurei (race detector) (push) Successful in 7m12s
Test / ShareFS (push) Successful in 7m23s
Test / Flake checks (push) Successful in 1m16s
The GNU mirror redirector was down yet again, and I have had enough. This change replaces all mentions of ftpmirror.gnu.org with mirrors.kernel.org. Signed-off-by: Ophestra <cat@gensokyo.uk>
26 lines
645 B
Go
26 lines
645 B
Go
package make {
|
|
description = "a tool which controls the generation of executables and other non-source files";
|
|
website = "https://www.gnu.org/software/make";
|
|
anitya = 1877;
|
|
|
|
version# = "4.4.1";
|
|
source = remoteTar {
|
|
url = "https://mirrors.kernel.org/gnu/make/make-"+version+".tar.gz";
|
|
checksum = "YS_B07ZcAy9PbaK5_vKGj64SrxO2VMpnMKfc9I0Q9IC1rn0RwOH7802pJoj2Mq4a";
|
|
compress = gzip;
|
|
};
|
|
|
|
toyboxEarly = true;
|
|
|
|
exec = generic {
|
|
build = `/usr/src/make/configure \
|
|
--prefix=/system \
|
|
--build="${ROSA_TRIPLE}" \
|
|
--disable-dependency-tracking
|
|
./build.sh
|
|
`;
|
|
// test suite wants perl
|
|
install = "./make DESTDIR=/work install\n";
|
|
};
|
|
}
|