-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathemoji.opam
40 lines (40 loc) · 1021 Bytes
/
emoji.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
33
34
35
36
37
38
39
40
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Use emojis by name"
description:
"OCaml library providing byte sequences of all the Unicode emoji characters and sequences sourced from unicode.org"
maintainer: [
"Edgar Aroutiounian <[email protected]>"
"Swrup <[email protected]>"
]
authors: ["Edgar Aroutiounian <[email protected]>"]
license: "BSD-3-Clause"
tags: ["emoji" "unicode"]
homepage: "https://github.com/fxfactorial/ocaml-emoji"
bug-reports: "https://github.com/fxfactorial/ocaml-emoji/issues"
depends: [
"dune" {>= "3.2"}
"ocaml" {>= "4.04"}
"mdx" {with-test}
"lwt" {with-test}
"tls-lwt" {with-test}
"cohttp-lwt-unix" {with-test}
"lambdasoup" {with-test}
"uutf" {with-test}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/fxfactorial/ocaml-emoji.git"