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]
9homepage: "https://github.com/andrenth/ocaml-stdint"
10bug-reports: "https://github.com/andrenth/ocaml-stdint/issues"
11license: "MIT"
12doc: "http://stdint.forge.ocamlcore.org/doc/"
13dev-repo: "git+https://github.com/andrenth/ocaml-stdint.git"
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: ["ocamlfind" "remove" "stdint"]
21depends: [
22 "ocaml" {< "5.0"}
23 "base-bytes"
24 "ocamlfind" {>= "1.5"}
25 "ocamlbuild" {build}
26]
27synopsis: "signed and unsigned integer types having specified widths"
28description: """
29The stdint library provides signed and unsigned integer types of various
30fixed widths: 8, 16, 24, 32, 40, 48, 56, 64 and 128 bit.
31This interface is similar to Int32 and Int64 from the base library but provides
32more functions and constants like arithmetic and bit-wise operations, constants
33like maximum and minimum values, infix operators conversion to and from every
34other integer type (including int, float and nativeint), parsing from and
35conversion to readable strings (binary, octal, decimal, hexademical),
36conversion to and from buffers in both big endian and little endian byte order."""
37flags: light-uninstall
38url {
39 src: "https://github.com/andrenth/ocaml-stdint/archive/0.5.0.tar.gz"
40 checksum: [
41 "sha256=e99d4b16bdbe5ebd473f3a2220516743405dfdaf495379833bac5acc4ce82dfb"
42 "md5=fefa9d456e1a22edbb32b6c1848b1663"
43 ]
44}