this repo has no description
1opam-version: "2.0"
2synopsis: "Bindings for posix getopt/getopt_long"
3description:
4 "posix-getopt provides a simple interface for the POSIX getopt and its extensions, getopt_long and getopt_long_only."
5maintainer: ["romain.beauxis@gmail.com"]
6authors: ["Romain Beauxis"]
7license: "MIT"
8homepage: "https://github.com/savonet/ocaml-posix"
9bug-reports: "https://github.com/savonet/ocaml-posix/issues"
10depends: [
11 "dune" {> "2.5"}
12 "dune-configurator"
13 "ounit2" {with-test}
14 "posix-uname" {with-test & = version}
15 "ctypes"
16 "posix-base" {= version}
17 "unix-errno"
18]
19build: [
20 ["dune" "subst"] {dev}
21 [
22 "dune"
23 "build"
24 "-p"
25 name
26 "-j"
27 jobs
28 "@install"
29 "@runtest" {with-test}
30 "@doc" {with-doc}
31 ]
32]
33dev-repo: "git+https://github.com/savonet/ocaml-posix.git"
34available: os != "win32" & os != "bsd"
35url {
36 src: "https://github.com/savonet/ocaml-posix/archive/v2.0.0.tar.gz"
37 checksum: [
38 "md5=2c186aa5161b72208a870d5710fb6208"
39 "sha512=d583c3d386865eab7575fc4f1976c17294bad2ee5037327cb5c3075965788170e652b7b9b9f660ef25f71558553fbcc47734b971e3c9f41627cc573d75d2fb54"
40 ]
41}