forked from murmour/mparser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopam
More file actions
39 lines (39 loc) · 935 Bytes
/
opam
File metadata and controls
39 lines (39 loc) · 935 Bytes
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
35
36
37
38
39
opam-version: "2.0"
name: "mparser-comby"
version: "0.1.0"
maintainer: "Rijnard van Tonder <rvantonder@gmail.com>"
authors: "Holger Arnold <holger@harnold.org>"
homepage: "https://github.com/comby-tools/mparser"
bug-reports: "https://github.com/comby-tools/mparser/issues"
dev-repo: "git://https://github.com/comby-tools/mparser.git"
license: "LGPL-2.1 with OCaml linking exception"
depends: [
"base-bytes"
"ocamlfind" {build}
"ocamlbuild" {build}
"pcre"
"re"
]
depexts: [
[
"pkg-config"
"libpcre3-dev"
] {os-distribution = "ubuntu"}
[
"pkg-config"
"pcre"
] {os-distribution = "macos"}
]
build: [
["oasis" "setup"]
["ocaml" "setup.ml" "-configure" "--prefix" prefix "--enable-re" "--enable-pcre"]
["ocaml" "setup.ml" "-build"]
]
install: [
["ocaml" "setup.ml" "-install"]
]
remove: [
["ocamlfind" "remove" "mparser"]
]
synopsis: "A parser combinator library"
description: ""