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 24install: [ 25 [ "dune" "install" "-p" name ] {with-test} 26 [ "./test/test_runes.ml" ] {with-test} 27] 28 29depends: [ 30 "ocaml" {>= "4.07.0"} 31 "dune" {>= "2.6.0"} 32 "conf-pkg-config" {build} 33 "dune-configurator" 34 "optint" {>= "0.0.5"} 35 "base-bytes" 36 "bigarray-compat" 37 "alcotest" {with-test} 38 "bos" {with-test} 39 "astring" {with-test} 40 "fmt" {with-test} 41 "fpath" {with-test} 42 "rresult" {with-test} 43 "ocamlfind" {with-test} 44] 45 46depopts: [ 47 "ocaml-freestanding" 48] 49 50conflicts: [ 51 "mirage-xen" {< "6.0.0"} 52 "ocaml-freestanding" {< "0.4.3"} 53] 54url { 55 src: 56 "https://github.com/mirage/checkseum/releases/download/v0.3.2/checkseum-v0.3.2.tbz" 57 checksum: [ 58 "sha256=9cdd282ea1cfc424095d7284e39e4d0ad091de3c3f2580539d03f6966d45ccd5" 59 "sha512=d66cb268dddaedcd2781a40b5982e987603f35f9f55dbfc2ca8d49802d878805b4f77d6d1c74a7556579c789b2dc89554c28ff652128604bcb3ad1a9788e2e97" 60 ] 61} 62x-commit-hash: "7382b2c327d19470351300767ac98fe6c395470c"