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 ] {arch != "arm32" & arch != "x86_32"} 20 21depends: [ 22 "ocaml" {>= "4.07.0"} 23 "dune" 24 "crowbar" {with-test & >= "0.2"} 25 "fmt" {with-test} 26] 27url { 28 src: 29 "https://github.com/mirage/optint/releases/download/v0.0.4/optint-v0.0.4.tbz" 30 checksum: [ 31 "sha256=2ae8d1e9fa30838c3c620af6a9e94b50b43a48a72ce06e318a71bb8afb52efa8" 32 "sha512=6127f5d216a66a376b75a309627e2c52c08d655c4a88a2d1df2b622d98abfe011fb10175f5f99737e950c8095596ef8fd680fe2338f53383e2263edb2d3a5c49" 33 ] 34}