this repo has no description
1opam-version: "2.0"
2maintainer: "sheets@alum.mit.edu"
3authors: ["David Sheets" "Jeremy Yallop"]
4homepage: "https://github.com/dsheets/ocaml-osx-xattr"
5bug-reports: "https://github.com/dsheets/ocaml-osx-xattr/issues"
6license: "ISC"
7tags: ["osx" "xattr" "extended attributes" "file system"]
8dev-repo: "git+https://github.com/dsheets/ocaml-osx-xattr.git"
9build: [
10 [make "build"]
11 [make "test"] {with-test}
12]
13install: [make "install"]
14remove: [make "uninstall"]
15depends: [
16 "ocaml"
17 "ocamlfind" {build}
18 "ocamlbuild" {build}
19 "alcotest" {with-test}
20 "ctypes" {>= "0.6.2"}
21 "unix-errno" {>= "0.4.0"}
22 "base-unix"
23 "unix-type-representations"
24]
25depopts: "lwt"
26available: os = "macos"
27synopsis: "OS X extended attribute system call bindings"
28description: """
29`getxattr`, `fgetxattr`, `listxattr`, `flistxattr`, `removexattr`,
30`fremovexattr`, `setxattr`, and `fsetxattr` are bound."""
31url {
32 src: "https://github.com/dsheets/ocaml-osx-xattr/archive/0.3.0.tar.gz"
33 checksum: [
34 "sha256=da2b8510eb768285cb579809d3a251bf0c98ec402bdc81b7722e1e8c41d69fb0"
35 "md5=7f1e2eb8e4c12a3b10b67c2b5309122c"
36 ]
37}