this repo has no description
1opam-version: "2.0"
2authors: ["John Else" "Simon Cruanes"]
3homepage: "https://github.com/johnelse/ocaml-irc-client"
4bug-reports: "https://github.com/johnelse/ocaml-irc-client/issues"
5dev-repo: "git+https://github.com/johnelse/ocaml-irc-client"
6maintainer: "john.else@gmail.com"
7license: "MIT"
8build: [
9 [
10 "./configure"
11 "--prefix"
12 prefix
13 "--%{lwt:enable}%-lwt"
14 "--%{tls:enable}%-tls"
15 "--%{base-unix:enable}%-unix"
16 "--enable-docs"
17 "--enable-examples"
18 ]
19 [make "build"]
20 ["./configure" "--enable-tests"] {with-test}
21 [make "test"] {with-test}
22 [make "doc"] {with-doc}
23]
24install: [
25 [make "PREFIX=%{prefix}%" "install"]
26]
27remove: [
28 ["ocamlfind" "remove" "irc-client"]
29]
30depends: [
31 "ocaml" {>= "4.00.1"}
32 "oasis" {build & >= "0.4.2"}
33 "ocamlbuild" {build}
34 "ocamlfind" {build}
35 "result"
36 "ounit" {with-test}
37]
38depopts: [
39 "base-unix"
40 "lwt"
41 "tls"
42]
43conflicts: [
44 "lwt" {>= "5.0.0"}
45 "tls" {>= "0.11.0"}
46]
47synopsis: "IRC client library"
48flags: light-uninstall
49url {
50 src: "https://github.com/johnelse/ocaml-irc-client/archive/0.4.0.tar.gz"
51 checksum: [
52 "sha256=249df9d7bde9f09674e0f2e50560652181af9e701ea92c276a4e4b2c8a2da126"
53 "md5=4424648730b87edfcf96ffae4072550a"
54 ]
55}