-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathopam.in
33 lines (33 loc) · 919 Bytes
/
opam.in
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
opam-version: "2.0"
name: "parsercombinator"
version: "@PACKAGE_VERSION@"
synopsis: "Resumable combinatoric parser with error detection"
maintainer: "rixed@free.fr"
authors: "rixed@free.fr"
bug-reports: "https://github.com/rixed/ocaml-parsercombinator/issues"
dev-repo: "git+https://github.com/rixed/ocaml-parsercombinator.git"
doc: "http://rixed.github.io/ocaml-parsercombinator/"
homepage: "https://github.com/rixed/ocaml-parsercombinator/"
build: [
["./configure" "--prefix=%{prefix}%"]
[make]
[make "doc"] {with-doc}
[make "check"] {with-test}
]
install: [make "install"]
remove: ["ocamlfind" "remove" "parsercombinator"]
depends: [
"ocamlfind" {build}
"batteries" {>= "3.0.0"}
"ounit" {with-test}
"portia" {build & >= "1.0"}
"lwt"
"lwt_ppx"
]
depexts: [
[["debian"] ["asciidoc"]]
[["ubuntu"] ["asciidoc"]]
]
post-messages: [
"This package requires asciidoc to build the doc." {failure}
]