-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathopam
36 lines (36 loc) · 876 Bytes
/
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
35
36
opam-version: "1.2"
name: "lambdoc"
version: "dev"
maintainer: "Dario Teixeira <[email protected]>"
authors: ["Dario Teixeira <[email protected]>"]
homepage: "http://lambdoc.forge.ocamlcore.org/"
bug-reports: "https://github.com/darioteixeira/lambdoc/issues"
dev-repo: "https://github.com/darioteixeira/lambdoc.git"
license: "GPL-2.0"
available: [ocaml-version >= "4.02.0"]
build: [
["./configure" "--prefix" prefix
"--docdir" "%{doc}%/lambdoc"
"--%{alcotest:enable}%-tests"]
[make]
[make "doc"]
]
build-test: [make "test"]
install: [[make "install"]]
remove: [["ocamlfind" "remove" "lambdoc"]]
depends: [
"alcotest" {test}
"blahcaml"
"camlhighlight" {>= "5"}
"menhir"
"ocamlbuild" {build}
"ocamlfind"
"ppx_blob"
"ppx_deriving"
"ppx_sexp_conv"
"re"
"sedlex"
"sexplib"
"tyxml" {>= "4"}
"xmlm"
]