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 [ "dune" "runtest" "-p" name "-j" jobs ] {with-test}
21]
22
23install: [
24 [ "dune" "install" "-p" name ] {with-test}
25 [ "ocaml" "./test/test_runes.ml" ] {with-test}
26]
27
28depends: [
29 "ocaml" {>= "4.07.0"}
30 "dune" {>= "2.6.0"}
31 "dune-configurator"
32 "optint" {>= "0.3.0"}
33 "alcotest" {with-test}
34 "bos" {with-test}
35 "astring" {with-test}
36 "fmt" {with-test}
37 "fpath" {with-test}
38 "rresult" {with-test}
39 "ocamlfind" {with-test}
40]
41
42conflicts: [
43 "mirage-xen" {< "6.0.0"}
44 "ocaml-freestanding"
45]
46url {
47 src:
48 "https://github.com/mirage/checkseum/releases/download/v0.5.1/checkseum-0.5.1.tbz"
49 checksum: [
50 "sha256=8037e2b3eeb7cbbe57fbd1b539f5be7c738bbbbdb2c305209bff13ac22ab7946"
51 "sha512=e8c7e8eb144e500e2b778451c24ffbfdfab529268605f3c00a57817004c53e10953797f354ba31aff773e09c142ce084012ea7fa6cd415b8a65b747b41994d9e"
52 ]
53}
54x-commit-hash: "98fb84079629e1c79f12985e70676361ae88cb0e"