Skip to content

Commit 5d2b57b

Browse files
Merge pull request ocaml#27840 from astrada/ocamlfuse
Add ocamlfuse 2.7.1-cvs13
2 parents 9c44b2e + caf8566 commit 5d2b57b

File tree

1 file changed

+51
-0
lines changed
  • packages/ocamlfuse/ocamlfuse.2.7.1-cvs13

1 file changed

+51
-0
lines changed
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# This file is generated by dune, edit dune-project instead
2+
opam-version: "2.0"
3+
synopsis: "OCaml bindings for FUSE (Filesystem in UserSpacE)"
4+
description: """
5+
This is a binding to FUSE for the OCaml programming language, enabling
6+
you to write multithreaded filesystems in the OCaml language. It has
7+
been designed with simplicity as a goal, as you can see by looking at
8+
example/fusexmp.ml. Efficiency has also been a separate goal. The
9+
Bigarray library is used for read and writes, allowing the library to
10+
do zero-copy in OCaml land."""
11+
maintainer: ["Alessandro Strada <[email protected]>"]
12+
authors: [
13+
"Vincenzo Ciancia"
14+
"Olaf Hering <[email protected]>"
15+
"Alessandro Strada <[email protected]>"
16+
]
17+
license: "GPL-1.0-or-later"
18+
bug-reports: "https://github.com/astrada/ocamlfuse/issues"
19+
depends: [
20+
"dune" {>= "3.7"}
21+
"ocaml" {>= "4.02.3"}
22+
"base-bigarray"
23+
"base-threads"
24+
"base-unix"
25+
"camlidl"
26+
"dune-configurator"
27+
"conf-libfuse"
28+
"odoc" {with-doc}
29+
]
30+
build: [
31+
["dune" "subst"] {dev}
32+
[
33+
"dune"
34+
"build"
35+
"-p"
36+
name
37+
"-j"
38+
jobs
39+
"@install"
40+
"@runtest" {with-test}
41+
"@doc" {with-doc}
42+
]
43+
]
44+
dev-repo: "git+https://github.com/astrada/ocamlfuse.git"
45+
homepage: "http://sourceforge.net/apps/mediawiki/ocamlfuse"
46+
available: [ os != "win32" & os != "macos" & os != "freebsd" ]
47+
x-maintenance-intent: ["(latest)"]
48+
url {
49+
src: "https://github.com/astrada/ocamlfuse/archive/v2.7.1_cvs13.tar.gz"
50+
checksum: "sha256=4ef484e4ca68d664b224683d081ee09c644b02ff2e4b49ecda37b18cc6d73974"
51+
}

0 commit comments

Comments
 (0)