aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/package/fuse.az
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-08-26 22:20:19 +0900
committerOphestra <cat@gensokyo.uk>2026-08-26 22:20:19 +0900
commit120ce960a705dd619e416ecbc70bab25ac90375d (patch)
tree31d2556cda5e9d1b67eddfaac9db73c3f07dcf8d /internal/rosa/package/fuse.az
parentcf100a75a1f072f75a3bdef115c0a7a20d16c9de (diff)
internal/rosa/package/fuse: include missing headers
The example relies on transitive includes which changed in the new toolchain. 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, 0 insertions, 33 deletions
diff --git a/internal/rosa/package/fuse.az b/internal/rosa/package/fuse.az
deleted file mode 100644
index 292a3208..00000000
--- a/internal/rosa/package/fuse.az
+++ /dev/null
@@ -1,33 +0,0 @@
-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 = {
- "default_library": "both";
- "tests": "true";
- "useroot": "false";
- "initscriptdir": "/system/etc";
- };
-
- postCompile = "python3 -m pytest test/";
- // this project uses pytest
- test = false;
- };
-
- inputs = [
- python-pytest,
-
- kernel-headers,
- ];
-}