diff options
Diffstat (limited to 'internal/rosa/package/fuse/package.az')
| -rw-r--r-- | internal/rosa/package/fuse/package.az | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/internal/rosa/package/fuse/package.az b/internal/rosa/package/fuse/package.az new file mode 100644 index 00000000..398fe0df --- /dev/null +++ b/internal/rosa/package/fuse/package.az @@ -0,0 +1,34 @@ +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; + }; + patches = [ "example-include.patch" ]; + + 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, + ]; +} |
