1 | opam-version: "2.0" |
2 | version: "0.5.8" |
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" {>= "1.3.1"} |
17 | "stdio" {>= "v0.14.0"} |
18 | "yaml" {>= "2.1.0"} |
19 | "odoc" {with-doc} |
20 | ] |
21 | build: [ |
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 | ] |
35 | depexts: ["pkg-config" "m4"] |
36 | dev-repo: "git+https://github.com/kevinschoon/note.git" |