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-attr" 5bug-reports: "https://github.com/dsheets/ocaml-osx-attr/issues" 6license: "ISC" 7tags: ["osx" "attr" "attributes" "getattrlist" "setattrlist" "file system"] 8dev-repo: "git+https://github.com/dsheets/ocaml-osx-attr.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.5.0"} 22 "base-unix" 23 "unix-type-representations" 24 "unix-time" 25] 26depopts: "lwt" 27available: os = "macos" 28synopsis: "OS X generic file system attribute system call bindings" 29description: """ 30"getattrlist" 'fgetattrlist', 'getattrlistat', 'getattrlistbulk', 31'setattrlist', and 'fsetattrlist' are bound.""" 32url { 33 src: "https://github.com/dsheets/ocaml-osx-attr/archive/0.3.0.tar.gz" 34 checksum: [ 35 "sha256=ed33c20784f7515391066351dbc6f7c51146159f3342ab3dc5603e57df3f0073" 36 "md5=99f2f0dba39f8f0247b62abc52d12fed" 37 ] 38}