this repo has no description
1opam-version: "2.0" 2authors: [ "David Scott" "John Else" ] 3homepage: "https://github.com/xapi-project/ocaml-crc" 4bug-reports: "https://github.com/xapi-project/ocaml-crc/issues" 5dev-repo: "git+https://github.com/xapi-project/ocaml-crc" 6maintainer: "john.else@citrix.com" 7build: [ 8 ["ocaml" "setup.ml" "-configure" "--%{mirage-xen:enable}%-xen"] 9 [make] 10 ["ocaml" "setup.ml" "-configure" "--%{ounit:enable}%-tests"] {with-test} 11 [make "test"] {with-test} 12] 13install: [ 14 [make "PREFIX=%{prefix}%" "install"] 15] 16remove: [ 17 [make "PREFIX=%{prefix}%" "uninstall"] 18] 19depends: [ 20 "ocaml" {>= "4.00.1"} 21 "cstruct" {>= "1.0.1"} 22 "ounit" {with-test} 23 "oasis" {build} 24 "ocamlbuild" {build} 25 "ocamlfind" {build} 26] 27depopts: [ 28 "mirage-xen" 29] 30synopsis: "CRC implementation supporting strings and cstructs" 31url { 32 src: "https://github.com/xapi-project/ocaml-crc/archive/1.0.0.tar.gz" 33 checksum: [ 34 "sha256=dae905e6cfb98c331139521ff0ae74fb5d9cd0e9848d2c6ebd47363e0892f3dd" 35 "md5=09051d7cd0a4dd935d379a1584777e07" 36 ] 37} 38conflicts: [ 39 "mirage-xen" {>= "6.0.0"} 40]