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[[
19 "ocaml" "pkg/pkg.ml" "build"
20 "--dev-pkg" "%{pinned}%"
21 "--lib-dir" "%{lib}%"
22]]
23
24# Following is only to deal with
25# https://caml.inria.fr/mantis/view.php?id=7808
26
27install:
28[
29 ["install" "-d" "%{lib}%/ocaml/"]
30 ["install" "src/omod.top" "src/omod.nattop" "%{lib}%/ocaml/"]
31]
32
33remove:
34[[
35 "rm" "-f" "%{lib}%/ocaml/omod.top" "%{lib}%/ocaml/omod.nattop"
36]]
37synopsis: "Lookup and load installed OCaml modules"
38description: """
39Omod is a library and command line to lookup and load installed OCaml
40modules. It provides a mecanism to load modules and their dependencies
41in the OCaml toplevel system (REPL).
42
43omod is distributed under the ISC license."""
44flags: light-uninstall
45url {
46 src: "http://erratique.ch/software/omod/releases/omod-0.0.1.tbz"
47 checksum: [
48 "sha256=58c8973fa85df6f92d06989248625fb356b8831ed649303e67814fe87681ea05"
49 "md5=4473c5d474a0c2ba8715f64bd3d2b800"
50 ]
51}