this repo has no description
1opam-version: "2.0" 2authors: "Pierre Chambart" 3maintainer: "pierre.chambart@ocamlpro.com" 4homepage: "https://github.com/OCamlPro/ocplib-endian" 5build: [ 6 ["ocaml" "setup.ml" "-configure" "--disable-debug" "--prefix" prefix] 7 ["ocaml" "setup.ml" "-build"] 8] 9install: [ 10 ["ocaml" "setup.ml" "-install"] 11] 12remove: ["ocamlfind" "remove" "ocplib-endian"] 13depends: [ 14 "ocaml" {< "5.0"} 15 "base-bytes" 16 "ocamlfind" 17 "cppo" {>= "1.1.0"} 18 "ocamlbuild" {build} 19] 20dev-repo: "git+https://github.com/OCamlPro/ocplib-endian.git" 21bug-reports: "https://github.com/OCamlPro/ocplib-endian/issues" 22synopsis: 23 "Optimised functions to read and write int16/32/64 from strings and bigarrays, based on new primitives added in version 4.01." 24description: """ 25The library implements three modules: 26* [EndianString](https://github.com/OCamlPro/ocplib-endian/blob/master/src/endianString.cppo.mli) works directly on strings, and provides submodules BigEndian and LittleEndian, with their unsafe counter-parts; 27* [EndianBytes](https://github.com/OCamlPro/ocplib-endian/blob/master/src/endianBytes.cppo.mli) works directly on bytes, and provides submodules BigEndian and LittleEndian, with their unsafe counter-parts; 28* [EndianBigstring](https://github.com/OCamlPro/ocplib-endian/blob/master/src/endianBigstring.cppo.mli) works on bigstrings (Bigarrays of chars), and provides submodules BigEndian and LittleEndian, with their unsafe counter-parts;""" 29flags: light-uninstall 30url { 31 src: "https://github.com/OCamlPro/ocplib-endian/archive/1.0.tar.gz" 32 checksum: [ 33 "sha256=76f268e1aff8dbac8b6a0ca9473f90255da35f15b0fcaf26a840cb6f73029243" 34 "md5=74b45ba33e189283170a748c2a3ed477" 35 ] 36}