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,27 +1,28 @@
//az:schema mbf
package bzip2 {
description = "a freely available, patent free, high-quality data compressor";
website = "https://sourceware.org/bzip2";
anitya = 237;
description = "a freely available, patent free, high-quality data compressor"
website = "https://sourceware.org/bzip2"
anitya = 237
version* = "1.0.8";
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;
};
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;
writable
enterSource
exec = make {
skipConfigure = true;
skipCheck = true;
inPlace = true;
skipConfigure
skipCheck
inPlace
make = [
"CC=cc",
];
install = "make PREFIX=/work/system install";
};
"CC=cc"
]
install = "make PREFIX=/work/system install"
}
}