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:
51 "https://github.com/johnelse/ocaml-irc-client/archive/irc-client.0.5.1.tar.gz"
52 checksum: [
53 "sha256=2e798fcc1464e43e0279c8620eae89cf1d6a43de0e56b2a5bc9ca98cd0ae7d65"
54 "md5=5047a422402f36af4a59261db7d0c287"
55 ]
56}