this repo has no description
1opam-version: "2.0"
2synopsis:
3 "Split a string to a list of strings of a character by the unicode codepoint"
4description: """
5Split a string to a list of strings of a character by the unicode codepoint.
6It requires module Uutf."""
7maintainer: ["Tan Kian-ting <yoxem@kianting.info>"]
8authors: ["Tan Kian-ting <yoxem@kianting.info>"]
9license: "MIT"
10tags: ["string" "utf8"]
11homepage: "https://github.com/yoxem/stringCodepointSplitter"
12bug-reports: "https://github.com/Yoxem/stringCodepointSplitter/issues"
13depends: [
14 "ocaml" {>= "4.07"}
15 "ocamlfind"
16 "dune" {>= "3.9"}
17 "uutf"
18 "odoc" {with-doc}
19]
20build: [
21 ["dune" "subst"] {dev}
22 [
23 "dune"
24 "build"
25 "-p"
26 name
27 "-j"
28 jobs
29 "@install"
30 "@runtest" {with-test}
31 "@doc" {with-doc}
32 ]
33]
34dev-repo: "git+https://github.com/yoxem/stringCodepointSplitter.git"
35url {
36 src:
37 "https://github.com/Yoxem/stringCodepointSplitter/releases/download/v0.0.2/stringCodepointSplitter-0.0.2.tbz"
38 checksum: [
39 "sha256=e76c17f9f74b665cd3f96ec913e4e9aefde7bc3c977ac1aa7df21d99d6788835"
40 "sha512=d50a99b78f0f21b007cc7881a311c3f64593156ef4cc88fa498c8da2715e75a5cefc008634a5dce59c3298d1203240d339732c55ce4503d44d1007a67529036b"
41 ]
42}
43x-commit-hash: "c1611f3b55a5dfc6b54bdeb757959e701859cbba"