aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/package/fuse.az
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-05-19 23:26:34 +0900
committerOphestra <cat@gensokyo.uk>2026-05-19 23:26:34 +0900
commit98d915af3dbab860bc1ac614a91d0a38555e624d (patch)
tree0d2172058dfda2b2ea47cb1a0359c9e29e72e6c9 /internal/rosa/package/fuse.az
parentc0593e83253813ba4ec9caf6784e5f2d6251e6fd (diff)
internal/rosa/package: migrate argp-standalone, dtc, elfutils, flex, freetype, fuse
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/package/fuse.az')
-rw-r--r--internal/rosa/package/fuse.az33
1 files changed, 33 insertions, 0 deletions
diff --git a/internal/rosa/package/fuse.az b/internal/rosa/package/fuse.az
new file mode 100644
index 00000000..68241602
--- /dev/null
+++ b/internal/rosa/package/fuse.az
@@ -0,0 +1,33 @@
+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;
+ };
+
+ exec = meson {
+ setup = {
+ "Ddefault_library": "both";
+ "Dtests": "true";
+ "Duseroot": "false";
+ "Dinitscriptdir": "/system/etc";
+ };
+
+ postCompile = "python3 -m pytest test/";
+ // this project uses pytest
+ skipTest = true;
+ };
+
+ inputs = [
+ python-pytest,
+
+ kernel-headers,
+ ];
+}