opam-version: "2.0"
maintainer: "Alessandro Strada <alessandro.strada@gmail.com>"
authors: [ "Vincenzo Ciancia" ]
license: "GPL-1.0-or-later"
homepage: "http://sourceforge.net/apps/mediawiki/ocamlfuse"
dev-repo: "git+https://github.com/astrada/ocamlfuse.git"
bug-reports: "https://github.com/astrada/ocamlfuse/issues"
build: [
  ["dune" "build" "-p" name "-j" jobs]
]
depends: [
  "ocaml" {>= "4.02.3"}
  "base-bigarray"
  "base-threads"
  "base-unix"
  "camlidl"
  "dune"
  "dune-configurator"
]
depexts: [
  ["libfuse-dev"] {os-family = "debian"}
  ["fuse-dev"] {os-distribution = "alpine"}
  ["fuse-devel"] {os-distribution = "centos"}
  ["fuse-devel"] {os-distribution = "fedora"}
  ["fuse-devel"] {os-family = "suse"}
  ["Caskroom/cask/osxfuse"] {os = "macos" & os-distribution = "homebrew"}
]
synopsis: "OCaml bindings for FUSE (Filesystem in UserSpacE)"
description: """
This is a binding to FUSE for the OCaml programming language, enabling
you to write multithreaded filesystems in the OCaml language. It has
been designed with simplicity as a goal, as you can see by looking at
example/fusexmp.ml. Efficiency has also been a separate goal. The
Bigarray library is used for read and writes, allowing the library to
do zero-copy in OCaml land."""
