-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathola.opam
36 lines (36 loc) · 909 Bytes
/
ola.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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "OCaml Lua Interpreter"
description:
"OCaml Lua Interpreter. Experimental project, work in progress ..."
maintainer: ["Eric Patrizio <[email protected]>"]
authors: ["Eric Patrizio <[email protected]>"]
license: "Unlicense"
tags: ["ola" "ocaml" "lua" "interpreter"]
homepage: "https://github.com/epatrizio/ola"
bug-reports: "https://github.com/epatrizio/ola/issues"
depends: [
"dune" {>= "3.0"}
"ocaml" {>= "4.14"}
"sedlex"
"menhir" {build & >= "20220210"}
"bisect_ppx" {>= "2.5" & with-dev-setup}
"ocb" {with-test & >= "0.1" & dev}
"odoc" {with-doc}
"mdx" {with-test & >= "2.1"}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/epatrizio/ola.git"