-
Notifications
You must be signed in to change notification settings - Fork 26
/
camomile.opam
28 lines (28 loc) · 986 Bytes
/
camomile.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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "A Unicode library"
description: """
Camomile is a Unicode library for OCaml. Camomile provides Unicode character
type, UTF-8, UTF-16, UTF-32 strings, conversion to/from about 200 encodings,
collation and locale-sensitive case mappings, and more. The library is currently
designed for Unicode Standard 3.2."""
maintainer: ["[email protected]"]
authors: ["Yoriyuki Yamagata"]
license: "LGPL-2+ with OCaml linking exception"
homepage: "https://github.com/yoriyuki/Camomile"
doc: "https://yoriyuki.github.io/Camomile/"
bug-reports: "https://github.com/yoriyuki/Camomile/issues"
depends: [
"dune" {>= "1.11"}
"ocaml" {>= "4.02.3"}
]
dev-repo: "git+https://github.com/yoriyuki/Camomile.git"
build: [
["ocaml" "configure.ml" "--share" "%{share}%/camomile"]
["dune" "subst"] {pinned}
["dune" "build" "-p" name "-j" jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]