this repo has no description
1opam-version: "2.0"
2maintainer: "martin@mjambon.com"
3homepage: "https://github.com/mjambon/cmitomli"
4build: make
5remove: [
6 [make "uninstall" "BINDIR=%{bin}%"]
7]
8dev-repo: "git+https://github.com/mjambon/cmitomli"
9install: [make "install" "BINDIR=%{bin}%"]
10synopsis:
11 "Converts compiled interface files (.cmi) into source interface files (.mli)"
12description: """
13cmitomli is useful when a complex implementation (.ml) already exists
14and one wants to create an explicit module interface for it (.mli).
15The effect is similar to running 'ocamlc -i' on an ml file but it
16doesn't require any other argument than the input cmi file."""
17depends: [
18 "ocaml" {>= "4.00.0"}
19]
20url {
21 src: "https://github.com/mjambon/cmitomli/archive/v1.0.0.tar.gz"
22 checksum: [
23 "sha256=f62fe48f0664f1506b35bc41100518c813ff5246422ca3f18c032bf1bfb456b7"
24 "md5=76fe691d99987aa02749bf504309ecef"
25 ]
26}