forked from ocaml-community/sedlex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsedlex.opam
34 lines (34 loc) · 1.09 KB
/
sedlex.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
opam-version: "2.0"
name: "sedlex"
synopsis: "An OCaml lexer generator for Unicode"
description: "
sedlex is a lexer generator for OCaml. It is similar to ocamllex, but supports
Unicode. Unlike ocamllex, sedlex allows lexer specifications within regular
OCaml source files. Lexing specific constructs are provided via a ppx syntax
extension.
"
version: "2.0"
license: "MIT"
doc: "https://ocaml-community.github.io/sedlex/index.html"
maintainer: "Alain Frisch <[email protected]>"
authors: [
"Alain Frisch <[email protected]>"
"https://github.com/ocaml-community/sedlex/graphs/contributors"
]
homepage: "https://github.com/ocaml-community/sedlex"
dev-repo: "git+https://github.com/ocaml-community/sedlex.git"
bug-reports: "https://github.com/ocaml-community/sedlex/issues"
build: [
["dune" "subst"] {pinned}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc}
]
depends: [
"ocaml" {build & >= "4.02.3"}
"dune" {build & >= "1.0"}
"ppx_tools_versioned"
"ocaml-migrate-parsetree"
"gen"
"uchar"
]