-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathml2rs.opam
43 lines (42 loc) · 966 Bytes
/
ml2rs.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
37
38
39
40
41
42
43
# This file was generated by `drom` from `drom.toml`.
# Do not modify, or add to the `skip` field of `drom.toml`.
opam-version: "2.0"
name: "ml2rs"
version: "0.1.0"
license: "LGPL-2.1-only with OCaml-LGPL-linking-exception"
synopsis: "The ml2rs project"
description: """
This is the description
of the ml2rs OCaml project
"""
authors: ["Ana Gelez <[email protected]>"]
maintainer: ["Ana Gelez <[email protected]>"]
build: [
["dune" "subst"] {dev}
["sh" "-c" "./scripts/before.sh build '%{name}%'"]
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
["sh" "-c" "./scripts/after.sh build '%{name}%'"]
]
install: [
["sh" "-c" "./scripts/before.sh install '%{name}%'"]
]
depends: [
"ocaml" {>= "4.07.0"}
"dune" {>= "2.6.0"}
"ml2rs_lib" {= version}
"ocaml-compiler-libs" {}
"ppx_inline_test" {with-test}
"ppx_expect" {with-test}
"odoc" {with-doc}
"ocamlformat" {with-test}
]