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/oklm-wsh/Callipyge" 5bug-reports: "https://github.com/oklm-wsh/Callipyge/issues" 6license: "MIT" 7dev-repo: "git+https://github.com/oklm-wsh/Callipyge.git" 8build: [ 9 ["./configure" "--prefix=%{prefix}%"] 10 [make] 11 ["./configure" "--enable-tests" "--prefix=%{prefix}%"] {with-test} 12 [make "test"] {with-test} 13] 14install: [make "install"] 15remove: ["ocamlfind" "remove" "callipyge"] 16depends: [ 17 "ocaml" {>= "4.02.0"} 18 "oasis" {build} 19 "base-bytes" 20 "alcotest" {with-test} 21 "ocamlbuild" {build} 22] 23synopsis: "Curve25519 in OCaml" 24description: "Curve25519 in OCaml" 25flags: light-uninstall 26url { 27 src: "https://github.com/oklm-wsh/Callipyge/archive/0.1.tar.gz" 28 checksum: [ 29 "sha256=d54fab4618ebab6180bf165635b0fb81357b614954ee31112fb4b7a3ff982bba" 30 "md5=37d16e36c5830a0864cb4331e6b13a43" 31 ] 32}