Skip to content

Commit dd744e3

Browse files
authored
Merge pull request #24129 from toodom02/release-ocamlregextkit-v0.1.1
2 parents 45333ac + 8d7ff15 commit dd744e3

File tree

1 file changed

+49
-0
lines changed
  • packages/ocamlregextkit/ocamlregextkit.0.1.1

1 file changed

+49
-0
lines changed
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
opam-version: "2.0"
2+
synopsis: "A regular expression toolkit for OCaml"
3+
description:
4+
"Provides data structures and algorithms for Regular Expressions, Deterministic Finite Automata, and Non-Deterministic Finite Automata"
5+
maintainer: ["Dominic Too"]
6+
authors: ["Dominic Too"]
7+
license: "GPL-3.0-or-later"
8+
tags: [
9+
"automata"
10+
"regular expressions"
11+
"regular languages"
12+
"regex"
13+
"library"
14+
"DFA"
15+
"NFA"
16+
"RE"
17+
]
18+
homepage: "https://github.com/toodom02/ocamlregextkit"
19+
doc: "https://toodom02.github.io/ocamlregextkit/"
20+
bug-reports: "https://github.com/toodom02/ocamlregextkit/issues"
21+
depends: [
22+
"ocaml" {>= "4.14"}
23+
"dune" {>= "3.4"}
24+
"odoc" {with-doc}
25+
]
26+
build: [
27+
["dune" "subst"] {dev}
28+
[
29+
"dune"
30+
"build"
31+
"-p"
32+
name
33+
"-j"
34+
jobs
35+
"@install"
36+
"@runtest" {with-test}
37+
"@doc" {with-doc}
38+
]
39+
]
40+
dev-repo: "git+https://github.com/toodom02/ocamlregextkit.git"
41+
url {
42+
src:
43+
"https://github.com/toodom02/ocamlregextkit/releases/download/v0.1.1/ocamlregextkit-0.1.1.tbz"
44+
checksum: [
45+
"sha256=676858fccee2a668cee8f17678bb4d0e6ae60f73b7f701e1f418095e84b1554b"
46+
"sha512=efbff06dd5668a13983411e575f1ab35049e2d75c0a6a56bcfd3c646374a73b467bfafcae7af127215d3ee00c3c70424dbf62f59b51dd3e8b0af97a5132de75a"
47+
]
48+
}
49+
x-commit-hash: "511bc2868cad986f5ef1e5dfeb80ec7a6a024e8a"

0 commit comments

Comments
 (0)