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 5OCaml modules. It provides a mechanism to load modules and their 6dependencies in 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.14.0"} 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.4.tbz" 35 checksum: 36 "sha512=cab9e8ab6ca6e836fdaa3dcf9552d31e4de2bf069fcab096c1565d204ff91fc3516cd017a13702d749580bd3563c462db3277ab036cfc5d3cb9703a08ddbb927" 37} 38x-maintenance-intent: ["(latest)"]