this repo has no description
1opam-version: "2.0"
2maintainer: "Alessandro Strada <alessandro.strada@gmail.com>"
3authors: [ "Alessandro Strada" ]
4license: "MIT"
5homepage: "https://github.com/astrada/gapi-ocaml"
6dev-repo: "git+https://github.com/astrada/gapi-ocaml.git"
7bug-reports: "https://github.com/astrada/gapi-ocaml/issues"
8build: [
9 ["ocaml" "setup.ml" "-configure" "--prefix" prefix]
10 ["ocaml" "setup.ml" "-build"]
11 ["ocaml" "setup.ml" "-configure" "--enable-tests"] {with-test}
12 ["ocaml" "setup.ml" "-build"] {with-test}
13 ["ocaml" "setup.ml" "-test"] {with-test}
14 ["ocaml" "setup.ml" "-doc"] {with-doc}
15]
16install: ["ocaml" "setup.ml" "-install"]
17remove: [
18 ["ocamlfind" "remove" "gapi-ocaml"]
19]
20depends: [
21 "ocaml" {>= "4.02.3"}
22 "cryptokit"
23 ("extlib" | "extlib-compat")
24 "ocamlbuild" {build}
25 "ocamlfind" {build}
26 "ocamlnet" {>= "4.1.4" & != "4.1.9"}
27 "ocurl"
28 "ounit" {with-test}
29 "pa_monad_custom" {with-test}
30 "xmlm"
31 "yojson" {< "2.0.0"}
32]
33depopts: [
34 "pa_monad_custom" {build}
35]
36synopsis: "A simple OCaml client for Google Services."
37description: """
38gapi-ocaml is a simple, unofficial, OCaml client for Google Services.
39The library supports ClientLogin, OAuth 1.0a, and OAuth 2.0
40authentication. Supported RESTful APIs: Calendar APIs v3, Google+ API
41v1, Tasks API v1, APIs Discovery Service v1, URL Shortener API v1,
42OAuth2 API v2, Custom Search API v1, Google Analytics API v3, Page
43Speed Online API v1, Blogger API v2, Site Verification API v1, AdSense
44Management API v1.4, BigQuery API v2, Drive API v2, Drive API v3,
45Gmail API v1. Google Data Protocol APIs (GData): Google Documents List
46API v3."""
47flags: light-uninstall
48url {
49 src: "https://github.com/astrada/gapi-ocaml/archive/v0.3.5.tar.gz"
50 checksum: [
51 "sha256=c913341cd29a0a6bb8fcfad4783eeea2d8d1c6d4a287f1bcf538d0d5f8d22f20"
52 "md5=f52008dbe36c1d9d8ea376ae798fb927"
53 ]
54}