From 1564b60c649c4a0f14bf41149b575ae6197bdc3b Mon Sep 17 00:00:00 2001 From: Tan Kian-ting Date: Sun, 27 Aug 2023 01:45:54 +0800 Subject: [PATCH] initial commit --- stringCodepointsSplitter.opam | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 stringCodepointsSplitter.opam diff --git a/stringCodepointsSplitter.opam b/stringCodepointsSplitter.opam new file mode 100644 index 0000000..1aa7b3d --- /dev/null +++ b/stringCodepointsSplitter.opam @@ -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 " +authors: "Tan Kian-ting " +license: "MIT License" +homepage: "" +bug-reports: "" +dev-repo: "" +depends: [ "ocaml" "ocamlfind" ] +build: [ + ["./configure" "--prefix=%{prefix}%"] + [make] +] +install: [make "install"] \ No newline at end of file