forked from rosa/hakurei
This uses more intuitive names for some arguments and inverts their default value. Slices and nil-capable strings replace skip arguments. Signed-off-by: Ophestra <cat@gensokyo.uk>
25 lines
592 B
Go
25 lines
592 B
Go
package bzip2 {
|
|
description = "a freely available, patent free, high-quality data compressor";
|
|
website = "https://sourceware.org/bzip2";
|
|
anitya = 237;
|
|
|
|
version# = "1.0.8";
|
|
source = remoteTar {
|
|
url = "https://sourceware.org/pub/bzip2/bzip2-"+version+".tar.gz";
|
|
checksum = "cTLykcco7boom-s05H1JVsQi1AtChYL84nXkg_92Dm1Xt94Ob_qlMg_-NSguIK-c";
|
|
compress = gzip;
|
|
};
|
|
|
|
// uses source tree as scratch space
|
|
writable = true;
|
|
enterSource = true;
|
|
|
|
exec = make {
|
|
chdir = false;
|
|
configure = nil;
|
|
make = [ "CC=cc" ];
|
|
check = nil;
|
|
install = "make PREFIX=/work/system install";
|
|
};
|
|
}
|