forked from dbuenzli/uuseg
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/duniverse-v13.0.0' into dune-uni…
…verse-v14.0.0
- Loading branch information
Showing
3 changed files
with
25 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
(lang dune 1.10) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
(library | ||
(name uuseg) | ||
(public_name uuseg) | ||
(wrapped false) | ||
(modules uuseg_base uuseg_buf uuseg_grapheme_cluster uuseg_word uuseg_sentence uuseg_line_break uuseg) | ||
(libraries uchar uucp) | ||
(flags :standard -w -50-39-37-32)) | ||
|
||
(library | ||
(name uuseg_string) | ||
(public_name uuseg.string) | ||
(wrapped false) | ||
(modules uuseg_string) | ||
(libraries uuseg uutf) | ||
(flags :standard -w -50-39-37-32)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,23 @@ | ||
opam-version: "2.0" | ||
name: "uuseg" | ||
synopsis: """Unicode text segmentation for OCaml""" | ||
maintainer: ["Daniel Bünzli <daniel.buenzl [email protected]>"] | ||
synopsis: "Unicode text segmentation for OCaml" | ||
maintainer: "Daniel Bünzli <daniel.buenzl [email protected]>" | ||
authors: ["The uuseg programmers"] | ||
homepage: "https://erratique.ch/software/uuseg" | ||
doc: "https://erratique.ch/software/uuseg/doc/" | ||
dev-repo: "git+https://erratique.ch/repos/uuseg.git" | ||
homepage: "https://github.com/dune-universe/uuseg/" | ||
dev-repo: "git+https://github.com/dune-universe/uuseg.git" | ||
bug-reports: "https://github.com/dbuenzli/uuseg/issues" | ||
license: ["ISC"] | ||
tags: ["unicode" "text" "segmentation" "org:erratique"] | ||
depends: ["ocaml" {>= "4.03.0"} | ||
"ocamlfind" {build} | ||
"ocamlbuild" {build} | ||
"topkg" {build & >= "1.0.3"} | ||
"dune" | ||
"uucp" {>= "14.0.0" & < "15.0.0"}] | ||
depopts: ["uutf" | ||
"cmdliner"] | ||
conflicts: ["uutf" {< "1.0.0"}] | ||
build: [["ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{dev}%" | ||
"--with-uutf" "%{uutf:installed}%" | ||
"--with-cmdliner" "%{cmdliner:installed}%" ]] | ||
build: [ | ||
[ "dune" "subst" ] {pinned} | ||
[ "dune" "build" "-p" name "-j" jobs ] | ||
] | ||
description: """ | ||
Uuseg is an OCaml library for segmenting Unicode text. It implements | ||
the locale independent [Unicode text segmentation algorithms][1] to | ||
|