this repo has no description
1opam-version: "2.0" 2maintainer: [ "Romain Calascibetta <romain.calascibetta@gmail.com>" ] 3authors: [ "Romain Calascibetta <romain.calascibetta@gmail.com>" ] 4homepage: "https://github.com/mirage/checkseum" 5bug-reports: "https://github.com/mirage/checkseum/issues" 6dev-repo: "git+https://github.com/mirage/checkseum.git" 7doc: "https://mirage.github.io/checkseum/" 8license: "MIT" 9synopsis: "Adler-32, CRC32 and CRC32-C implementation in C and OCaml" 10description: """ 11Checkseum is a library to provide implementation of Adler-32, CRC32 and CRC32-C 12in C and OCaml. 13 14This library use the linking trick to choose between the C implementation 15(checkseum.c) or the OCaml implementation (checkseum.ocaml). This library is on 16top of optint to get the best representation of an int32. """ 17 18build: [ 19 [ "dune" "build" "-p" name "-j" jobs ] 20 [ "./install/install.ml" ] 21 [ "dune" "runtest" "-p" name "-j" jobs ] {with-test} 22] 23 24depends: [ 25 "ocaml" {>= "4.07.0"} 26 "dune" {>= "2.6.0"} 27 "conf-pkg-config" {build} 28 "dune-configurator" 29 "optint" {>= "0.0.3" & < "0.0.5"} 30 "base-bytes" 31 "bigarray-compat" 32 "alcotest" {with-test} 33 "bos" {with-test} 34 "astring" {with-test} 35 "fmt" {with-test} 36 "fpath" {with-test} 37 "rresult" {with-test} 38 "ocamlfind" {with-test} 39] 40 41depopts: [ 42 "ocaml-freestanding" 43] 44 45conflicts: [ 46 "mirage-xen" {< "6.0.0"} 47 "ocaml-freestanding" {< "0.4.3"} 48] 49x-commit-hash: "afc5b2d5fed77786ea4f60daaebc1ed0bfeedb02" 50url { 51 src: 52 "https://github.com/mirage/checkseum/releases/download/v0.3.0/checkseum-v0.3.0.tbz" 53 checksum: [ 54 "sha256=79584732a1cac6f4f8214ad0f5b99918e2894b80cc27f78a34aeaf4b2e008bbe" 55 "sha512=f7359f920170d3bc339a7b97a7fbab0358650b6f8b3b35cf22bafa091686e6ede1ca33f6f3259ae873c80a46b0b46baa0a297a83b8557126d92c825eb9d1cd0e" 56 ] 57} 58available: [ arch != "s390x" ]