this repo has no description
1opam-version: "2.0"
2maintainer: "Edgar Aroutiounian <edgar.factorial@gmail.com>"
3authors: [ "Edgar Aroutiounian <edgar.factorial@gmail.com>" ]
4license: "BSD-3-Clause"
5homepage: "http://hyegar.com"
6bug-reports: "https://github.com/fxfactorial/podge/issues"
7build: [
8 ["oasis" "setup"]
9 ["ocaml" "setup.ml" "-configure" "--prefix" prefix]
10 ["ocaml" "setup.ml" "-build"]
11 ["oasis" "setup"] {with-test}
12 ["ocaml" "setup.ml" "-configure" "--enable-tests"] {with-test}
13 ["ocaml" "setup.ml" "-build"] {with-test}
14 ["ocaml" "setup.ml" "-test"] {with-test}
15]
16install: ["ocaml" "setup.ml" "-install"]
17remove: ["ocamlfind" "remove" "podge"]
18depends: [
19 "ocaml" {>= "4.02.1"}
20 "base-unix"
21 "cohttp" {>= "0.9.7" & < "5.0.0"}
22 "oasis" {build & >= "0.4"}
23 "ocamlfind" {build}
24 "re" {>= "1.3.0"}
25 "tyxml" {< "4.0.0"}
26 "yojson" {< "2.0.0"}
27 "ocamlbuild" {build}
28]
29dev-repo: "git+https://github.com/fxfactorial/podge"
30synopsis: "Shortcuts and helpers for common tasks in OCaml ecosystem"
31description: """
32If you're doing any modern OCaml then you're doubtlessly annoyed by
33the state of libraries and committing to one of the big ones can be
34restricting. Podge is a single module containing specialized modules
35for their respectives usages for seemingly common tasks.
36
37Podge is especially useful for Hackathons or data exploration in utop
38i.e. you just want to do a simple HTTP get/put request or manipulate JSON."""
39flags: light-uninstall
40url {
41 src: "https://github.com/fxfactorial/podge/archive/v0.0.3.tar.gz"
42 checksum: [
43 "sha256=194157b3d75cc06621a47f9d428e7c573617c05e17096b29207006e350c74000"
44 "md5=4e91f8cbb770d74b10b3bd6f7d48c528"
45 ]
46}