Skip to content

Commit bfd3d6a

Browse files
authored
Merge pull request ocaml#28106 from nao1215/opam-publish-stringx.0.2.0
Package stringx.0.2.0
2 parents 4f977cc + ced6d57 commit bfd3d6a

File tree

1 file changed

+40
-0
lines changed
  • packages/stringx/stringx.0.2.0

1 file changed

+40
-0
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# This file is generated by dune, edit dune-project instead
2+
opam-version: "2.0"
3+
synopsis:
4+
"A collection of string utilities missing from OCaml's standard library"
5+
description:
6+
"stringx is a pure OCaml library that provides string manipulation functions commonly found in other languages, but absent from OCaml's standard library. Useful for text processing, formatting, and other everyday needs."
7+
maintainer: ["Naohiro CHIKAMATSU <[email protected]>"]
8+
authors: ["Naohiro CHIKAMATSU"]
9+
license: "MIT"
10+
homepage: "https://github.com/nao1215/stringx"
11+
bug-reports: "https://github.com/nao1215/stringx/issues"
12+
depends: [
13+
"ocaml" {>= "5.0"}
14+
"dune" {>= "3.13"}
15+
"uutf"
16+
"alcotest" {with-test}
17+
"odoc" {with-doc}
18+
]
19+
build: [
20+
["dune" "subst"] {dev}
21+
[
22+
"dune"
23+
"build"
24+
"-p"
25+
name
26+
"-j"
27+
jobs
28+
"@install"
29+
"@runtest" {with-test}
30+
"@doc" {with-doc}
31+
]
32+
]
33+
dev-repo: "git+https://github.com/nao1215/stringx.git"
34+
url {
35+
src: "https://github.com/nao1215/stringx/archive/refs/tags/v0.2.0.tar.gz"
36+
checksum: [
37+
"md5=d7e8dac0a07370c26439560e65f31d4b"
38+
"sha512=9d1cfa248d81aa7d7573ebf62796f6307350eacec46352ebb4ffd57e38bb4516d7ce3c096f865404d27645347844d78a21e135ed9a3fb8a7d8a2bcd190de61e8"
39+
]
40+
}

0 commit comments

Comments
 (0)