initial commit
This commit is contained in:
commit
1564b60c64
1 changed files with 21 additions and 0 deletions
21
stringCodepointsSplitter.opam
Normal file
21
stringCodepointsSplitter.opam
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
opam-version: "2.0"
|
||||||
|
name: "stringCodepointSplitter"
|
||||||
|
version: "0.1"
|
||||||
|
synopsis: "Split a string to a list of strings of a character by the unicode codepoint"
|
||||||
|
description: """
|
||||||
|
Split a string to a list of strings of a character by the unicode codepoint.
|
||||||
|
|
||||||
|
It requires module Uutf.
|
||||||
|
"""
|
||||||
|
maintainer: "Tan Kian-ting <yoxem@kianting.info>"
|
||||||
|
authors: "Tan Kian-ting <yoxem@kianting.info>"
|
||||||
|
license: "MIT License"
|
||||||
|
homepage: ""
|
||||||
|
bug-reports: ""
|
||||||
|
dev-repo: ""
|
||||||
|
depends: [ "ocaml" "ocamlfind" ]
|
||||||
|
build: [
|
||||||
|
["./configure" "--prefix=%{prefix}%"]
|
||||||
|
[make]
|
||||||
|
]
|
||||||
|
install: [make "install"]
|
Loading…
Reference in a new issue