diff options
author | Sébastien Dailly <sebastien@chimrod.com> | 2018-02-12 15:22:56 +0100 |
---|---|---|
committer | Sébastien Dailly <sebastien@chimrod.com> | 2018-02-12 15:22:56 +0100 |
commit | 5f94836f4d1adca31c502706831b9ac600c3f41f (patch) | |
tree | 4e00c09f198667bfb88965d8c9535e23dc70bbf1 /opam | |
parent | bb48738c4111f5f4e2faa40fe67ae1b8b9d7c2eb (diff) |
Update licence, add opam script
Diffstat (limited to 'opam')
-rwxr-xr-x | opam | 31 |
1 files changed, 31 insertions, 0 deletions
@@ -0,0 +1,31 @@ +opam-version: "1.2"
+
+version: "0.1"
+
+maintainer: "Chimrod"
+author: "Chimrod"
+
+homepage: "http://git.chimrod.com/cgit.cgi/licht.git"
+dev-repo: "http://git.chimrod.com/cgit.cgi/licht.git"
+
+build: [
+ [make "-f" "Makefile" "PREFIX=%{prefix}%"]
+]
+install: [
+ [make "-f" "Makefile" "install" "PREFIX=%{prefix}%"]
+]
+remove: [
+ [make "-f" "Makefile" "uninstall" "PREFIX=%{prefix}%"]
+]
+depends: [
+ "ocamlfind"
+ "ocamlbuild" {build}
+ "menhir"
+ "curses"
+ "camlzip"
+ "xmlm"
+ "text"
+ "zarith" { >= "1.5" }
+ "base"
+]
+available: [ ocaml-version >= "4.06.0" ]
|