this repo has no description
1opam-version: "2.0"
2maintainer: "p.donadeo@gmail.com"
3authors: [
4 "Paolo Donadeo"
5 "Sylvain Le Gall"
6]
7homepage: "https://pdonadeo.github.io/ocaml-lua/"
8bug-reports: "https://github.com/pdonadeo/ocaml-lua/issues"
9dev-repo: "git+https://github.com/pdonadeo/ocaml-lua.git"
10license: "MIT"
11build: [
12 [ "sh" "-c" "cd src/lua_c ; tar xf lua-5.1.5.tar.gz" ]
13 [ "sh" "-c" "cd src/lua_c/lua-5.1.5 ; patch -p1 -i ../lua.patch" ]
14 [ "sh" "-c" "cd src/lua_c ; mv lua-5.1.5 lua515" ]
15 [ "dune" "build" "-p" name "-j" jobs "@install" ]
16 [ "dune" "build" "-p" name "-j" jobs "@doc" ] {with-doc}
17]
18depends: [
19 "ocaml" {>= "4.08.0"}
20 "dune" {>= "1.11"}
21 "odoc" {with-doc}
22]
23synopsis: "Lua bindings"
24description: """
25Lua is a powerful, light-weight programming language designed for
26extending applications. It provides a good general purpose programming
27language to replace DSL that don't really need to be specific.
28
29This library provides bindings to Lua API which allows the application
30to exchange data with Lua programs and also to extend Lua with OCaml
31functions.
32
33[Lua homepage](http://www.lua.org)"""
34url {
35 src: "https://github.com/pdonadeo/ocaml-lua/archive/v1.8.tar.gz"
36 checksum: [
37 "sha256=8f1575411c1db2ed2736846b1b29d6d1b34fe440a81cdb7e0b0c1c7c87534f67"
38 "md5=f5fd56bd53f8e87818cb18137304e415"
39 ]
40}