this repo has no description
1opam-version: "2.0"
2maintainer: [ "romain.calascibetta@gmail.com" ]
3authors: "Romain Calascibetta"
4license: "ISC"
5homepage: "https://github.com/mirage/optint"
6bug-reports: "https://github.com/mirage/optint/issues"
7dev-repo: "git+https://github.com/mirage/optint.git"
8doc: "https://mirage.github.io/optint/"
9synopsis: "Abstract type on integer between x64 and x86 architecture"
10description: """
11This library provide an abstract type which represents at least a 32-bits integer.
12On x64, this library use a native unboxed integer (63 bits).
13On x86, this library use a boxed int32.
14
15Implementation depends on target architecture.
16"""
17
18build: ["dune" "build" "-p" name "-j" jobs]
19run-test: [ "dune" "runtest" "-p" name "-j" jobs ]
20
21depends: [
22 "ocaml" {>= "4.07.0"}
23 "dune"
24 "crowbar" {with-test & >= "0.2"}
25 "fmt" {with-test}
26]
27available: arch != "arm32" & arch != "x86_32"
28url {
29 src:
30 "https://github.com/mirage/optint/releases/download/v0.0.3/optint-v0.0.3.tbz"
31 checksum: [
32 "sha256=9279d910f0b49eef4e6c7201a2e6189a4866b12d42ce677b9c3d51458d1ef930"
33 "sha512=c696a4cee26666a1868a6d0ea5b441d6292468fd51c233b3d2036ee6df7a0cba9200747ba7287b8181ca29afce80433c2919fe84f5d7c9debcd5ce8c192e4ac4"
34 ]
35}