note.opam -rw-r--r-- 977 B
1opam-version: "2.0"
2version: "0.6.1"
3synopsis: "Note is a simple CLI based note taking program"
4description: "Note is a simple CLI based note taking program"
5maintainer: ["Kevin Schoon "]
6authors: ["Kevin Schoon "]
7license: "AGPL3"
8homepage: "https://github.com/kevinschoon/note"
9bug-reports: "https://github.com/kevinschoon/note/issues"
10depends: [
11 "alcotest" {>= "1.5.0"}
12 "ANSITerminal" {>= "0.8.2"}
13 "base" {>= "v0.14.0"}
14 "core" {>= "v0.14.0"}
15 "dune" {>= "2.9"}
16 "dune-build-info" {>= "2.9.1"}
17 "ezjsonm" {>= "1.2.0"}
18 "lambdasoup" {>= "0.7.3"}
19 "omd" {>= "2.0.0~alpha1"}
20 "re" {>= "1.9.0"}
21 "stdio" {>= "v0.14.0"}
22 "yaml" {>= "2.1.0"}
23 "odoc" {with-doc}
24]
25build: [
26 ["dune" "subst"] {pinned}
27 [
28 "dune"
29 "build"
30 "-p"
31 name
32 "-j"
33 jobs
34 "@install"
35 "@runtest" {with-test}
36 "@doc" {with-doc}
37 ]
38]
39depexts: ["pkg-config" "m4"]
40dev-repo: "git+https://github.com/kevinschoon/note.git"