this repo has no description
1opam-version: "2.0" 2synopsis: "Lookup and load installed OCaml modules" 3description: """\ 4Omod is a library and command line tool to lookup and load installed OCaml 5modules. It provides a mechanism to load modules and their dependencies 6in the OCaml toplevel system (REPL). 7 8omod is distributed under the ISC license. 9 10Homepage: http://erratique.ch/software/omod""" 11maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 12authors: "The omod programmers" 13license: "ISC" 14tags: ["dev" "toplevel" "repl" "org:erratique"] 15homepage: "https://erratique.ch/software/omod" 16doc: "https://erratique.ch/software/omod/doc/" 17bug-reports: "https://github.com/dbuenzli/omod/issues" 18depends: [ 19 "ocaml" {>= "4.08.0" & < "5.2"} 20 "ocamlfind" {build} 21 "ocamlbuild" {build} 22 "topkg" {build & >= "1.0.3"} 23 "cmdliner" {>= "1.1.0"} 24] 25build: [ 26 "ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{dev}%" "--lib-dir" "%{lib}%" 27] 28install: [ 29 ["install" "-d" "%{lib}%/ocaml/"] 30 ["install" "src/omod.top" "src/omod.nattop" "%{lib}%/ocaml/"] 31] 32dev-repo: "git+https://erratique.ch/repos/omod.git" 33url { 34 src: "https://erratique.ch/software/omod/releases/omod-0.0.3.tbz" 35 checksum: 36 "sha512=4f53b8cdd054dc1a6813427452a91294e0bbcfefe948fc1caec47be136dbcecf13112bf2b620fa2f667592b04b28df74e3bf012ea0fb0038c1da4217155ca626" 37}