-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathopam
45 lines (41 loc) · 1.15 KB
/
opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
opam-version: "2.0"
name: "note"
synopsis: "Declarative events and signals for OCaml"
description: """\
Note is an OCaml library for functional reactive programming (FRP). It
provides support to program with time varying values: declarative
events and signals.
Note also has (optional and experimental) support for reactive browser
programming with the [brr] library.
Note is distributed under the ISC license.
Homepage: <http://erratique.ch/software/note>
[brr]: https://erratique.ch/software/brr"""
maintainer: "Daniel Bünzli <daniel.buenzl [email protected]>"
authors: "The note programmers"
license: "ISC"
tags: [
"reactive" "declarative" "signal" "event" "frp" "org:erratique" "browser"
]
homepage: "https://erratique.ch/software/note"
doc: "https://erratique.ch/software/note/doc/"
bug-reports: "https://github.com/dbuenzli/note/issues"
depends: [
"ocaml" {>= "4.08.0"}
"ocamlfind" {build}
"ocamlbuild" {build}
"topkg" {build & >= "1.0.3"}
]
depopts: ["brr"]
conflicts: [
"brr" {< "0.0.6"}
]
build: [
"ocaml"
"pkg/pkg.ml"
"build"
"--dev-pkg"
"%{dev}%"
"--with-brr"
"%{brr:installed}%"
]
dev-repo: "git+https://erratique.ch/repos/note.git"