blob: 264016e2348706db172add44372ffd0dafcb923d (
plain)
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
|
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" ]
|