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-unix-sys-stat"
5bug-reports: "https://github.com/dsheets/ocaml-unix-sys-stat/issues"
6license: "ISC"
7tags: ["unix" "posix" "sys/stat.h" "syscall" "stat"]
8dev-repo: "git+https://github.com/dsheets/ocaml-unix-sys-stat.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 "base-bytes"
21 "unix-errno" {>= "0.4.0"}
22 "ctypes"
23]
24depopts: "base-unix"
25conflicts: [
26 "ctypes" {< "0.4.0"}
27 "ctypes" {>= "0.6.0"}
28]
29synopsis:
30 "ocaml-unix-sys-stat provides access to the features exposed in sys/stat.h in a way that is not tied to the implementation on the host system."
31description: """
32The Sys_stat module provides functions for translating between the file types and mode bits accessible through sys/stat.h and their values on particular systems. The Sys_stat_host module exports representations of various hosts.
33
34The Sys_stat_unix provides bindings to functions that use the types in Sys_stat along with a representation of the host system. The bindings support a more comprehensive range of flags than the corresponding functions in the standard OCaml Unix module."""
35url {
36 src: "https://github.com/dsheets/ocaml-unix-sys-stat/archive/0.3.1.tar.gz"
37 checksum: [
38 "sha256=f7777425f9dd4411a4702f45d5931d2cd668a25c5ad6c4456d20968509697686"
39 "md5=184ff11457ed7d2c939a59476e16873f"
40 ]
41}