this repo has no description
1opam-version: "2.0"
2maintainer: "sheets@alum.mit.edu"
3authors: "David Sheets"
4homepage: "https://github.com/dsheets/ocaml-osx-acl"
5bug-reports: "https://github.com/dsheets/ocaml-osx-acl/issues"
6license: "ISC"
7tags: ["osx" "acl" "file system" "POSIX.1e" "security"]
8dev-repo: "git+https://github.com/dsheets/ocaml-osx-acl.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.9.0"}
21 "unix-errno" {>= "0.5.0"}
22 "base-unix"
23 "unix-type-representations"
24 "osx-membership"
25]
26depopts: "lwt"
27available: os = "macos"
28synopsis: "OS X POSIX.1e file system access control list (ACL) bindings"
29description: """
30Provides access to OS X functions for getting and setting POSIX.1e file
31system access control lists (ACLs). This functionality offers a
32finer-grained permissions model than traditional UNIX permissions."""
33url {
34 src: "https://github.com/dsheets/ocaml-osx-acl/archive/0.1.0.tar.gz"
35 checksum: [
36 "sha256=015e149226a6b8c1cdae8a705b94a78bdb43739c8ba7c7085bbe0e03f7a5c656"
37 "md5=e6e750e1fdae0a3fb3e32b48be3e757a"
38 ]
39}