1 | opam-version: "2.0" |
2 | version: "0.6.1" |
3 | synopsis: "Note is a simple CLI based note taking program" |
4 | description: "Note is a simple CLI based note taking program" |
5 | maintainer: ["Kevin Schoon <kevinschoon@gmail.com>"] |
6 | authors: ["Kevin Schoon <kevinschoon@gmail.com>"] |
7 | license: "AGPL3" |
8 | homepage: "https://github.com/kevinschoon/note" |
9 | bug-reports: "https://github.com/kevinschoon/note/issues" |
10 | depends: [ |
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" {>= "2.0.0~alpha1"} |
17 | "re" {>= "v1.9.0"} |
18 | "stdio" {>= "v0.14.0"} |
19 | "yaml" {>= "2.1.0"} |
20 | "odoc" {with-doc} |
21 | ] |
22 | build: [ |
23 | ["dune" "subst"] {pinned} |
24 | [ |
25 | "dune" |
26 | "build" |
27 | "-p" |
28 | name |
29 | "-j" |
30 | jobs |
31 | "@install" |
32 | "@runtest" {with-test} |
33 | "@doc" {with-doc} |
34 | ] |
35 | ] |
36 | depexts: ["pkg-config" "m4"] |
37 | dev-repo: "git+https://github.com/kevinschoon/note.git" |