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,51 +1,53 @@
package squashfs-tools {
description = "tools to create and extract Squashfs filesystems";
website = "https://github.com/plougher/squashfs-tools";
anitya = 4879;
//az:schema mbf
version* = "4.7.5";
package squashfs-tools {
description = "tools to create and extract Squashfs filesystems"
website = "https://github.com/plougher/squashfs-tools"
anitya = 4879
version := "4.7.5"
source = remoteGitHubRelease {
suffix = "plougher/squashfs-tools";
tag = version;
name = "squashfs-tools-"+version+".tar.gz";
checksum = "rF52wLQP-jeAmcD-48wqJcck8ZWRFwkax3T-7snaRf5EBnCQQh0YypMY9lwcivLz";
compress = gzip;
};
suffix = "plougher/squashfs-tools"
tag = version
name = "squashfs-tools-${version}.tar.gz"
checksum = "rF52wLQP-jeAmcD-48wqJcck8ZWRFwkax3T-7snaRf5EBnCQQh0YypMY9lwcivLz"
compress = gzip
}
// uses source tree as scratch space
writable = true;
chmod = true;
writable
chmod
env = [
"CONFIG=1",
"XZ_SUPPORT=0",
"LZO_SUPPORT=0",
"LZ4_SUPPORT=0",
"COMP_DEFAULT=zstd",
"USE_PREBUILT_MANPAGES=y",
];
"CONFIG=1"
"XZ_SUPPORT=0"
"LZO_SUPPORT=0"
"LZ4_SUPPORT=0"
"COMP_DEFAULT=zstd"
"USE_PREBUILT_MANPAGES=y"
]
early = "cd squashfs-tools";
early = "cd squashfs-tools"
exec = make {
skipConfigure = true;
inPlace = true;
skipConfigure
inPlace
skipCheck = true;
install = "make INSTALL_PREFIX=/work/system install";
};
skipCheck
install = "make INSTALL_PREFIX=/work/system install"
}
inputs = [
sed,
sed
zstd,
gzip,
zlib,
];
zstd
gzip
zlib
]
runtime = [
zstd,
gzip,
zlib,
];
zstd
gzip
zlib
]
}