forked from johnelse/ocaml-irc-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopam
49 lines (49 loc) · 881 Bytes
/
opam
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
opam-version: "1.2"
authors: ["John Else" "Simon Cruanes"]
homepage: "https://github.com/johnelse/ocaml-irc-client"
bug-reports: "https://github.com/johnelse/ocaml-irc-client/issues"
dev-repo: "git://github.com/johnelse/ocaml-irc-client"
maintainer: "[email protected]"
build: [
[
"./configure"
"--prefix" prefix
"--%{lwt:enable}%-lwt"
"--%{tls:enable}%-tls"
"--%{base-unix:enable}%-unix"
"--enable-docs"
"--enable-examples"
]
[make "build"]
]
build-doc: [
[make "doc"]
]
build-test: [
[
"./configure"
"--enable-tests"
]
[make "test"]
]
install: [
[make "PREFIX=%{prefix}%" "install"]
]
remove: [
["ocamlfind" "remove" "irc-client"]
]
depends: [
"oasis" {build}
"ocamlbuild" {build}
"ocamlfind" {build}
"result"
"ounit" {test}
]
depopts: [
"base-unix"
"lwt"
"tls"
]
available: [
ocaml-version >= "4.00.1"
]