this repo has no description
1opam-version: "2.0" 2maintainer: "Markus W. Weissmann <markus.weissmann@in.tum.de>" 3authors: [ 4 "Andre Nathan <andre@digirati.com.br>" 5 "Jeff Shaw <shawjef3@msu.edu>" 6 "Markus W. Weissmann <markus.weissmann@in.tum.de>" 7 "Florian Pichlmeier <florian.pichlmeier@mytum.de>" 8] 9license: "MIT" 10homepage: "https://github.com/andrenth/ocaml-stdint" 11doc: "http://stdint.forge.ocamlcore.org/doc/" 12dev-repo: "git+https://github.com/andrenth/ocaml-stdint.git" 13bug-reports: "https://github.com/andrenth/ocaml-stdint/issues" 14build: [ 15 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 16 ["ocaml" "setup.ml" "-build"] 17 ["ocaml" "setup.ml" "-doc"] {with-doc} 18] 19install: ["ocaml" "setup.ml" "-install"] 20remove: [ 21 ["ocamlfind" "remove" "stdint"] 22] 23depends: [ 24 "ocaml" {< "5.0"} 25 "base-bytes" 26 "ocamlfind" {>= "1.5"} 27 "ocamlbuild" {build} 28] 29synopsis: "signed and unsigned integer types having specified widths" 30description: """ 31The stdint library provides signed and unsigned integer types of various 32fixed widths: 8, 16, 24, 32, 40, 48, 56, 64 and 128 bit. 33This interface is similar to Int32 and Int64 from the base library but provides 34more functions and constants like arithmetic and bit-wise operations, constants 35like maximum and minimum values, infix operators conversion to and from every 36other integer type (including int, float and nativeint), parsing from and 37conversion to readable strings (binary, octal, decimal, hexademical), 38conversion to and from buffers in both big endian and little endian byte order.""" 39flags: light-uninstall 40url { 41 src: "https://github.com/andrenth/ocaml-stdint/archive/0.4.2.tar.gz" 42 checksum: [ 43 "sha256=88b87da27b81ce175df4c58b2733958647869d33a143886740afe075a51b761b" 44 "md5=dde8a4e4429bffa4bd7c6a2b4bae1f4e" 45 ] 46}