-
Notifications
You must be signed in to change notification settings - Fork 4
/
text.opam
30 lines (30 loc) · 962 Bytes
/
text.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
opam-version: "2.0"
maintainer: "[email protected]"
authors: "Jérémie Dimino"
homepage: "https://github.com/vbmithr/ocaml-text"
bug-reports: "https://github.com/vbmithr/ocaml-text/issues"
build: [
[make "setup.exe"]
["./setup.exe" "-configure" "--%{pcre:enable}%-pcre" "--%{camlp4:enable}%-camlp4"]
[make]
]
install: [make "install"]
remove: [["ocamlfind" "remove" "text"]]
depends: [
"ocaml"
"ocamlfind" {build}
"base-bytes"
"ocamlbuild" {build}
]
depopts: ["pcre" "camlp4"]
dev-repo: "git+https://github.com/vbmithr/ocaml-text"
doc: "https://vbmithr.github.io/ocaml-text/doc"
synopsis:
"Library for dealing with \"text\", i.e. sequence of unicode characters, in a convenient way"
description:"""It supports:
- character encoding/decoding using iconv
- manipulation of text as UTF-8 encoded strings
- localised text functions such as compare, upper, ...
- human readable regular expression inside patterns
"""
flags: light-uninstall