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