this repo has no description
1opam-version: "2.0"
2homepage: "http://reactiveml.org"
3maintainer: "devel@reactiveml.org"
4bug-reports: "bugs@reactiveml.org"
5build: [
6["./configure" "--prefix" "%{prefix}%"]
7[make]
8]
9install: [
10 [make "install"]
11]
12remove: [
13 ["./configure" "--prefix" "%{prefix}%"]
14 [make "uninstall"]
15]
16depends: [
17 "ocaml" {>= "4.02" & < "5.0.0"}
18 "ocamlbuild" {build}
19 "num"
20]
21depexts: ["patch"] {os-distribution = "alpine"}
22synopsis:
23 "ReactiveML: a programming language for implementing interactive systems."
24description: """
25ReactiveML is based on the synchronous reactive model embedded in an ML
26language (here a subset of OCaml). It provides synchronous parallel
27composition and dynamic features like the dynamic creation of processes.
28In ReactiveML, the reactive model is integrated at the language level
29(not as a library) which leads to safer and more natural programming."""
30authors: "Louis Mandel louis@reactiveml.org"
31url {
32 src: "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/rml-1.09.05-2017-10-10.tar.gz"
33 checksum: [
34 "sha256=dab3ff9a544a4af70d27f5ec767d34ed52c5d954d4e08407a5a30d59048753ac"
35 "md5=55b0603d353f833254faa9721c9d2db6"
36 ]
37}