this repo has no description
1opam-version: "2.0" 2maintainer: "mirageos-devel@lists.xenproject.org" 3authors: [ "Thomas Gazagnaire" 4 "Anil Madhavapeddy" 5 "Peter Zotov" ] 6license: "ISC" 7homepage: "https://github.com/mirage/ocaml-base64" 8doc: "http://mirage.github.io/ocaml-bytes" 9bug-reports: "https://github.com/mirage/ocaml-base64/issues" 10dev-repo: "git+https://github.com/mirage/ocaml-base64.git" 11build: [ 12 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 13 ["ocaml" "setup.ml" "-build"] 14 ["ocaml" "setup.ml" "-doc"] {with-doc} 15] 16remove: [ 17 ["ocamlfind" "remove" "base64"] 18] 19depends: [ 20 "ocaml" {< "5.0"} 21 "ocamlfind" {build} 22 "base-bytes" 23 "ocamlbuild" {build} 24] 25install: ["ocaml" "setup.ml" "-install"] 26synopsis: "Base64 encoding and decoding library" 27description: """ 28Base64 is a group of similar binary-to-text encoding schemes that represent 29binary data in an ASCII string format by translating it into a radix-64 30representation. It is specified in RFC 2045. 31 32From version 2.0 upwards, the module name is called `B64` to avoid clashing 33with other libraries such as `extlib` that use the `Base64` toplevel name.""" 34flags: light-uninstall 35url { 36 src: "https://github.com/mirage/ocaml-base64/archive/v2.0.0.tar.gz" 37 checksum: [ 38 "sha256=029b6a7af1493a077dc25c8e0f3534e5f5ff6e4260e3998a9ca3850fb7238c2c" 39 "md5=52b9736839c83cf88a9fb1373cf2e35c" 40 ] 41}