-
Notifications
You must be signed in to change notification settings - Fork 10
/
ocamlfuse.opam
47 lines (47 loc) · 1.33 KB
/
ocamlfuse.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
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."""
maintainer: ["Alessandro Strada <alessandro.strada@gmail.com>"]
authors: [
"Vincenzo Ciancia"
"Olaf Hering <olaf@aepfle.de>"
"Alessandro Strada <alessandro.strada@gmail.com>"
]
license: "GPL-1.0-or-later"
bug-reports: "https://github.com/astrada/ocamlfuse/issues"
depends: [
"dune" {>= "3.7"}
"ocaml" {>= "4.02.3"}
"base-bigarray"
"base-threads"
"base-unix"
"camlidl"
"dune-configurator"
"conf-libfuse"
"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/astrada/ocamlfuse.git"
homepage: "http://sourceforge.net/apps/mediawiki/ocamlfuse"
available: [ os != "oraclelinux-9" & os != "freebsd" ]
x-ci-accept-failures: ["oraclelinux-7"]