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