this repo has no description
1opam-version: "2.0"
2maintainer: "Spiros Eliopoulos <spiros@inhabitedtype.com>"
3authors: [ "Spiros Eliopoulos <spiros@inhabitedtype.com>"
4 "Daniel Patterson <dbp@dbpmail.net>" ]
5license: "BSD-3-Clause"
6homepage: "https://github.com/inhabitedtype/ocaml-aws"
7dev-repo: "git+https://github.com/inhabitedtype/ocaml-aws.git"
8bug-reports: "https://github.com/inhabitedtype/ocaml-aws/issues"
9build: [
10 [
11 "ocaml"
12 "setup.ml"
13 "-configure"
14 "--prefix"
15 prefix
16 "--%{lwt+cohttp+ssl:enable}%-lwt"
17 "--%{async+cohttp+async_ssl:enable}%-async"
18 ]
19 ["ocaml" "setup.ml" "-build"]
20 [
21 "ocaml"
22 "setup.ml"
23 "-configure"
24 "--enable-tests"
25 "--%{lwt+cohttp+ssl:enable}%-lwt"
26 "--%{async+cohttp+async_ssl:enable}%-async"
27 ] {with-test}
28 ["ocaml" "setup.ml" "-build"] {with-test}
29 ["ocaml" "setup.ml" "-test"] {with-test}
30 ["ocaml" "setup.ml" "-doc"] {with-doc}
31]
32install: ["ocaml" "setup.ml" "-install"]
33remove: [
34 ["ocamlfind" "remove" "aws"]
35]
36depends: [
37 "ocaml" {>= "4.01" & < "5.0"}
38 "calendar" {>= "2.00"}
39 "ezxmlm"
40 "nocrypto"
41 "ocamlfind" {build}
42 "uri" {>= "1.4.0"}
43]
44depopts: [
45 "async"
46 "async_ssl"
47 "base-threads"
48 "base-unix"
49 "cohttp"
50 "lwt"
51 "ssl"
52]
53conflicts: [
54 "cohttp" {< "0.17.0"}
55 "cohttp" {>="0.99"}
56]
57synopsis: "Amazon Web Services SDK"
58description: """
59ocaml-aws is an Amazon Web Services SDK for OCaml. Its source
60distribution includes a core runtime API and a code generation tool
61that generates individual libraries from [botocore][] service
62descriptions."""
63flags: light-uninstall
64url {
65 src:
66 "https://github.com/inhabitedtype/ocaml-aws/releases/download/aws-1.0.2/aws-1.0.2.tar.gz"
67 checksum: [
68 "sha256=684e3f8c5b0384f4329ca258ad3cb4aaa2ac9522401dc781163d0019cff2cec9"
69 "md5=21c8d70e4e95ccb4285ddef3cff8c230"
70 ]
71}