this repo has no description
1opam-version: "2.0" 2maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 3authors: ["The omod programmers"] 4homepage: "http://erratique.ch/software/omod" 5doc: "http://erratique.ch/software/omod/doc" 6license: "ISC" 7dev-repo: "git+http://erratique.ch/repos/omod.git" 8bug-reports: "https://github.com/dbuenzli/omod/issues" 9tags: [ "org:erratique" "dev" "toplevel" "repl" ] 10depends: [ 11 "ocaml" {>= "4.03.0" & < "5.0"} 12 "ocamlfind" {build} 13 "ocamlbuild" {build} 14 "topkg" {build & >= "0.9.1"} 15 "cmdliner" {>= "1.0.2"} 16] 17build: 18[[ "ocaml" "pkg/pkg.ml" "build" 19 "--dev-pkg" "%{pinned}%" 20 "--lib-dir" "%{lib}%" ] 21] 22 23# Following is only to deal with 24# https://caml.inria.fr/mantis/view.php?id=7808 25 26install: 27[ 28 ["install" "-d" "%{lib}%/ocaml/"] 29 ["install" "src/omod.top" "src/omod.nattop" "%{lib}%/ocaml/"] 30] 31 32remove: 33[[ 34 "rm" "-f" "%{lib}%/ocaml/omod.top" "%{lib}%/ocaml/omod.nattop" 35]] 36synopsis: "Lookup and load installed OCaml modules" 37description: """ 38Omod is a library and command line tool to lookup and load installed OCaml 39modules. It provides a mecanism to load modules and their dependencies 40in the OCaml toplevel system (REPL). 41 42omod is distributed under the ISC license.""" 43flags: light-uninstall 44url { 45 src: "http://erratique.ch/software/omod/releases/omod-0.0.2.tbz" 46 checksum: [ 47 "sha256=6d0fa1a6a32f5f66b8fb6d1e8dc92f961204be134a26f798f4ff29dbdec22130" 48 "md5=98cb7bc813e9325237929d047cd8408b" 49 ] 50}