this repo has no description
1opam-version: "2.0"
2synopsis: "An embeddable Lua 2.5 interpreter implemented in OCaml"
3maintainer: "Daniil Baturin <daniil+opam@baturin.org>"
4authors: [
5 "Norman Ramsey <nr@cs.tufts.edu>" "Christian Lindig <lindig@gmail.com>"
6]
7license: "BSD-2-Clause"
8homepage: "https://github.com/lindig/lua-ml"
9bug-reports: "https://github.com/lindig/lua-ml/issues"
10depends: [
11 "dune" {>= "2.9"}
12 "ocaml" {>= "4.07.0"}
13 "odoc" {with-doc}
14]
15build: [
16 ["dune" "subst"] {dev}
17 [
18 "dune"
19 "build"
20 "-p"
21 name
22 "-j"
23 jobs
24 "--promote-install-files=false"
25 "@install"
26 "@runtest" {with-test}
27 "@doc" {with-doc}
28 ]
29 ["dune" "install" "-p" name "--create-install-files" name]
30]
31dev-repo: "git+https://github.com/lindig/lua-ml.git"
32url {
33 src: "https://github.com/lindig/lua-ml/archive/refs/tags/0.9.3.tar.gz"
34 checksum: [
35 "md5=a97a8d80c534880cb56c1cb2be34159a"
36 "sha512=74d6881dc6b3a16738fa1a66db903bb2968bb913afc422ed230f279f7f05377b91a1c9cea5364021da5f6ee1f605c2fb25932503b978e9080dd6b9e7e8d36de8"
37 ]
38}
39post-messages: [
40 "Lua-ML does build with OCaml 5.0.0, however, it only works with it as long as the code is single-threaded: \
41 trying to execute Lua code in more than one domain may incur in confusing, unpredictable failures." {ocaml:version >= "5.0"}
42]