forked from Armael/ocaml-kittyimg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkittyimg.opam
32 lines (32 loc) · 840 Bytes
/
kittyimg.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
opam-version: "2.0"
version: "0.1"
synopsis: "An implementation of Kitty's terminal graphics protocol"
description:
"Kitty's terminal graphics protocol allows displaying images in compatible terminal emulators"
maintainer: ["Armaël Guéneau <[email protected]>"]
authors: ["Armaël Guéneau <[email protected]>"]
license: "MIT"
homepage: "https://github.com/Armael/ocaml-kittyimg"
bug-reports: "https://github.com/Armael/ocaml-kittyimg/issues"
depends: [
"ocaml" {>= "4.08"}
"dune" {>= "2.7"}
"base64" {>= "3.0.0"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
available: arch != "arm32" & arch != "x86_32"
dev-repo: "git+https://github.com/Armael/ocaml-kittyimg.git"