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" & < "0.6.0"}
22 "ctypes" {>= "0.6.0"}
23 "posix-types" {< "2.0.0"}
24 "unix-type-representations"
25]
26depopts: ["base-unix" "lwt"]
27conflicts: ["lwt" {< "2.4.7"} "lwt" {>= "4.0.0"}]
28synopsis:
29 "ocaml-unix-sys-stat provides access to the features exposed in sys/stat.h"
30description: """
31in a way that is not tied to the implementation on the host system.
32
33The Sys_stat module provides functions for translating between the file
34types and mode bits accessible through sys/stat.h and their values on
35particular systems. The Sys_stat_host module exports representations of
36various hosts.
37
38The Sys_stat_unix provides bindings to functions that use the types in
39Sys_stat along with a representation of the host system. The bindings
40support a more comprehensive range of flags than the corresponding
41functions in the standard OCaml Unix module."""
42url {
43 src: "https://github.com/dsheets/ocaml-unix-sys-stat/archive/0.5.1.tar.gz"
44 checksum: [
45 "sha256=d959fc7b9945178d118e19c4e8c3516ac6dffafe45c383d3f026ecef8f82f4f8"
46 "md5=486c9e94d8c5278a7cb979ba39bc30bf"
47 ]
48}