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,33 +1,35 @@
package fuse {
description = "the reference implementation of the Linux FUSE interface";
website = "https://github.com/libfuse/libfuse";
anitya = 861;
//az:schema mbf
version* = "3.18.2";
package fuse {
description = "the reference implementation of the Linux FUSE interface"
website = "https://github.com/libfuse/libfuse"
anitya = 861
version := "3.18.2"
source = remoteGitHubRelease {
suffix = "libfuse/libfuse";
tag = "fuse-"+version;
name = "fuse-"+version+".tar.gz";
checksum = "iL-7b7eUtmlVSf5cSq0dzow3UiqSjBmzV3cI_ENPs1tXcHdktkG45j1V12h-4jZe";
compress = gzip;
};
suffix = "libfuse/libfuse"
tag = "fuse-"+version
name = "fuse-${version}.tar.gz"
checksum = "iL-7b7eUtmlVSf5cSq0dzow3UiqSjBmzV3cI_ENPs1tXcHdktkG45j1V12h-4jZe"
compress = gzip
}
exec = meson {
setup = {
setup = [
"Ddefault_library": "both";
"Dtests": "true";
"Duseroot": "false";
"Dinitscriptdir": "/system/etc";
};
]
postCompile = "python3 -m pytest test/";
postCompile = "python3 -m pytest test/"
// this project uses pytest
skipTest = true;
};
skipTest
}
inputs = [
python-pytest,
python-pytest
kernel-headers,
];
kernel-headers
]
}