this repo has no description
1opam-version: "2.0"
2maintainer: "https://github.com/ocaml/opam-repository/issues"
3build: [
4 ["ocaml" "setup.ml" "-configure" "--prefix" prefix]
5 ["ocaml" "setup.ml" "-build"]
6]
7depends: [
8 "ocaml" {< "5.0"}
9 "ocamlfind"
10 "ocamlbuild" {build}
11]
12install: ["ocaml" "setup.ml" "-install"]
13synopsis: "Include files in OCaml code"
14description: """
15OCamlify allows to create OCaml source code by including whole files
16into OCaml string or string list. The code generated can be compiled
17as a standard OCaml file. It allows embedding external resources as
18OCaml code."""
19available: [os != "win32"]
20url {
21 src:
22 "https://download.ocamlcore.org/ocamlify/ocamlify/0.0.1/ocamlify-0.0.1.tar.gz"
23 checksum: [
24 "sha256=75f20c65b834165c98b606b03c7f28c09c03f3ebf12b69dae8ba2d2cf75836c9"
25 "md5=bcd97ad0f7203019019997197451dbf0"
26 ]
27}
28extra-source "ocamlify.install" {
29 src:
30 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/ocamlify/ocamlify.install"
31 checksum: [
32 "sha256=3a9c36ec4d98009d8529d9565fffea77cd10080c331b4f7935fdb842123af56e"
33 "md5=5ae3ee90457ab5a6051136a36885c67e"
34 ]
35}