aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/package/bzip2.az
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-05-19 22:26:40 +0900
committerOphestra <cat@gensokyo.uk>2026-05-19 22:26:40 +0900
commit1c6f30379e0b21dad7f8da21e9c7736c1fa72997 (patch)
tree5d24065c75a14a360d3ba09903b2525a737519d5 /internal/rosa/package/bzip2.az
parent009a4e0d583d14ebe328473df6468424587087a7 (diff)
internal/rosa/package: migrate bzip2, curl, connman
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/package/bzip2.az')
-rw-r--r--internal/rosa/package/bzip2.az27
1 files changed, 27 insertions, 0 deletions
diff --git a/internal/rosa/package/bzip2.az b/internal/rosa/package/bzip2.az
new file mode 100644
index 00000000..12fb1d7c
--- /dev/null
+++ b/internal/rosa/package/bzip2.az
@@ -0,0 +1,27 @@
+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 {
+ skipConfigure = true;
+ skipCheck = true;
+ inPlace = true;
+
+ make = [
+ "CC=cc",
+ ];
+ install = "make PREFIX=/work/system install";
+ };
+}