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.1/aws-1.0.1.tar.gz" 67 checksum: [ 68 "sha256=4e9bd894d7eb2c4813c5357c826884bb1d646167c2d6706e00160015b1b2f6ad" 69 "md5=077ac52195a96a3491da0abe71f81b25" 70 ] 71}