Initial working commit

This commit is contained in:
2025-11-26 21:12:08 +03:00
commit 4709e81b81
9 changed files with 312 additions and 0 deletions

28
fusetar.opam Normal file
View File

@@ -0,0 +1,28 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "A fuse filesystem driver for tar"
description: "Mounts a tar file as a read-write file system on a directory"
homepage: "https://github.com/username/reponame"
bug-reports: "https://github.com/username/reponame/issues"
depends: [
"dune" {>= "3.18"}
"ocaml"
"ocamlfuse"
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/username/reponame.git"
x-maintenance-intent: ["(latest)"]