Files
hakurei/internal/rosa/package/unzip.az
Ophestra a3867ad65f internal/rosa/azalea: replace binding token
This replaces the '*' placeholder with a less confusing '#'.

Signed-off-by: Ophestra <cat@gensokyo.uk>
2026-05-24 16:20:26 +09:00

37 lines
733 B
Go

package unzip {
description = "portable compression/archiver utilities";
website = "https://infozip.sourceforge.net";
anitya = 8684;
version# = "6.0";
source = remoteTar {
url = "https://downloads.sourceforge.net/project/infozip/"+
"UnZip%206.x%20%28latest%29/UnZip%20"+version+"/"+
"unzip"+replace {
s = version;
old = ".";
}+".tar.gz";
checksum = "fcqjB1IOVRNJ16K5gTGEDt3zCJDVBc7EDSra9w3H93stqkNwH1vaPQs_QGOpQZu1";
compress = gzip;
};
enterSource = true;
writable = true;
chmod = true;
exec = generic {
inPlace = true;
build = `unix/configure
make -f unix/Makefile generic1`;
install = `
mkdir -p /work/system/bin/
mv unzip /work/system/bin/
`;
};
inputs = [
make,
coreutils,
];
}