note.opam -rw-r--r-- 897 B
1version: "%%VERSION%%"
2opam-version: "2.0"
3version: "0.0.2"
4synopsis: "Note is a simple CLI based note taking program"
5description: "Note is a simple CLI based note taking program"
6maintainer: ["Kevin Schoon <kevinschoon@gmail.com>"]
7authors: ["Kevin Schoon <kevinschoon@gmail.com>"]
8license: "AGPL3"
9homepage: "https://github.com/kevinschoon/note"
10bug-reports: "https://github.com/kevinschoon/note/issues"
11depends: [
12 "ANSITerminal" {>= "0.8.2"}
13 "base" {>= "v0.14.0"}
14 "core" {>= "v0.14.0"}
15 "dune" {>= "2.7" & >= "2.7"}
16 "ezjsonm" {>= "1.2.0"}
17 "omd" {>= "1.3.1"}
18 "stdio" {>= "v0.14.0"}
19 "yaml" {>= "2.1.0"}
20 "odoc" {with-doc}
21]
22build: [
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]
36depexts: ["pkg-config" "m4"]
37dev-repo: "git+https://github.com/kevinschoon/note.git"