this repo has no description
1opam-version: "2.0" 2maintainer: "Romain Beauxis <toots@rastageeks.org>" 3authors: "Romain Beauxis <toots@rastageeks.org>" 4homepage: "https://github.com/toots/posix-getopt" 5bug-reports: "https://github.com/toots/posix-getopt/issues" 6license: "WTFPL" 7dev-repo: "git+https://github.com/toots/posix-getopt.git" 8build: [ 9 ["ocaml" "setup.ml" "-configure" "--prefix" prefix "--enable-tests" {with-test}] 10 ["ocaml" "setup.ml" "-build"] 11 ["ocaml" "setup.ml" "-test"] {with-test} 12] 13install: ["ocaml" "setup.ml" "-install"] 14depends: [ 15 "ocaml" 16 "ctypes" {>= "0.4" & < "0.18.0"} 17 "ctypes-foreign" 18 "ocamlfind" {build} 19 "ocamlbuild" {build} 20 "ounit" {with-test} 21 "extunix" {with-test & < "0.3.0"} 22] 23synopsis: "OCaml bindings for POSIX getopt/getopt_long" 24description: 25 "This module provides a simple interface for the POSIX getopt and its extensions, getopt_long and getopt_long_only." 26url { 27 src: 28 "https://github.com/toots/posix-getopt/releases/download/0.1.0/posix-getopt-0.1.0.tar.gz" 29 checksum: [ 30 "sha256=3c0be1005c17f35dcacd2575fa69ac61e17d640af27e37c339dee64eda01301f" 31 "md5=5a285e0dfc3bf293770d5310dda96127" 32 ] 33}