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"
7dev-repo: "git+https://github.com/dsheets/ocaml-unix-sys-stat.git"
8build: [
9 [make "build"]
10 [make "test"] {with-test}
11]
12install: [make "install"]
13remove: [make "uninstall"]
14depends: [
15 "ocaml"
16 "ocamlfind" {build}
17 "ocamlbuild" {build}
18 "alcotest" {with-test}
19 "base-bytes"
20 "unix-errno" {>= "0.3.0" & < "0.4.0"}
21 "ctypes"
22]
23depopts: "base-unix"
24conflicts: [
25 "ctypes" {< "0.4.0"}
26 "ctypes" {>= "0.6.0"}
27]
28synopsis:
29 "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."
30description: """
31The 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.
32
33The 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."""
34url {
35 src: "https://github.com/dsheets/ocaml-unix-sys-stat/archive/0.3.0.tar.gz"
36 checksum: [
37 "sha256=d25541e9e87f20effde53e2c5ac69ef99b7b85d412facbc425d1f65eadd9f815"
38 "md5=7e59aa29e9a039ed17a16e1a61bc0dde"
39 ]
40}