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.
- Loading branch information
Showing
3 changed files
with
23 additions
and
18 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,3 @@ | ||
(lang dune 1.10) | ||
(name uuseg) | ||
(package (name uuseg)) |
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 :standard \ uuseg_string) | ||
(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 |
---|---|---|
|
@@ -22,30 +22,17 @@ maintainer: "Daniel Bünzli <daniel.buenzl [email protected]>" | |
authors: "The uuseg programmers" | ||
license: "ISC" | ||
tags: ["unicode" "text" "segmentation" "org:erratique"] | ||
homepage: "https://erratique.ch/software/uuseg" | ||
doc: "https://erratique.ch/software/uuseg/doc/" | ||
bug-reports: "https://github.com/dbuenzli/uuseg/issues" | ||
homepage: "https://github.com/dune-universe/uuseg" | ||
bug-reports: "https://github.com/dbuenzli/uucp/issues" | ||
depends: [ | ||
"ocaml" {>= "4.14.0"} | ||
"ocamlfind" {build} | ||
"ocamlbuild" {build} | ||
"topkg" {build & >= "1.0.3"} | ||
"dune" {>= "1.10"} | ||
"uucp" {>= "15.1.0" & < "16.0.0"} | ||
] | ||
depopts: ["uutf" "cmdliner"] | ||
conflicts: [ | ||
"uutf" {< "1.0.0"} | ||
"cmdliner" {< "1.1.0"} | ||
] | ||
build: [ | ||
"ocaml" | ||
"pkg/pkg.ml" | ||
"build" | ||
"--dev-pkg" | ||
"%{dev}%" | ||
"--with-uutf" | ||
"%{uutf:installed}%" | ||
"--with-cmdliner" | ||
"%{cmdliner:installed}%" | ||
] | ||
dev-repo: "git+https://erratique.ch/repos/uuseg.git" | ||
build: [ "dune" "build" "-p" name "-j" jobs ] | ||
dev-repo: "git+https://github.com/dune-universe/uuseg.git" |