aboutsummaryrefslogtreecommitdiff
path: root/opam
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@chimrod.com>2018-02-12 15:22:56 +0100
committerSébastien Dailly <sebastien@chimrod.com>2018-02-12 15:22:56 +0100
commit5f94836f4d1adca31c502706831b9ac600c3f41f (patch)
tree4e00c09f198667bfb88965d8c9535e23dc70bbf1 /opam
parentbb48738c4111f5f4e2faa40fe67ae1b8b9d7c2eb (diff)
Update licence, add opam script
Diffstat (limited to 'opam')
-rwxr-xr-xopam31
1 files changed, 31 insertions, 0 deletions
diff --git a/opam b/opam
new file mode 100755
index 0000000..264016e
--- /dev/null
+++ b/opam
@@ -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" ]