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