this repo has no description
1opam-version: "2.0"
2maintainer: "Louis Gesbert <louis.gesbert@ocamlpro.com>"
3authors: "Louis Gesbert <louis.gesbert@ocamlpro.com>"
4homepage: "http://www.typerex.org"
5bug-reports: "https://github.com/OCamlPro/ocp-reloc/issues"
6license: "LGPL-3.0-only WITH OCaml-LGPL-linking-exception"
7tags: ["org:ocamlpro" "org:typerex"]
8dev-repo: "git+https://github.com/OCamlPro/ocp-reloc"
9build: [
10 "ocamlfind"
11 "ocamlopt"
12 "-package"
13 "unix,cmdliner"
14 "-linkpkg"
15 "-I"
16 "src"
17 "src/reloc.mli"
18 "src/reloc.ml"
19 "src/relocMain.ml"
20 "-o"
21 "ocp-reloc"
22]
23depends: [
24 "ocaml" {>= "4.02.0"}
25 "ocamlfind" {build}
26 "cmdliner" {build & < "2.0.0"}
27]
28synopsis: "Relocation of OCaml bytecode executables"
29description: """
30Changes the headers of (non-custom) OCaml bytecode files to account for a
31different location of ocamlrun than what is was built into the compiler."""
32url {
33 src: "https://github.com/AltGr/ocp-reloc/archive/0.1.tar.gz"
34 checksum: [
35 "sha256=6d43acd7fda0f4b150623398a611f46442136b6e1e78e59b160e22831e2635c4"
36 "md5=050377bbd4c0c8711cd9baf891212d68"
37 ]
38}