From 1d448e748265088f1bed2637f6ac262460cc8fa8 Mon Sep 17 00:00:00 2001 From: Danny Willems Date: Fri, 7 Aug 2020 22:13:25 +0200 Subject: [PATCH] Package ff.0.2.0 --- packages/ff/ff.0.2.0/opam | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 packages/ff/ff.0.2.0/opam diff --git a/packages/ff/ff.0.2.0/opam b/packages/ff/ff.0.2.0/opam new file mode 100644 index 00000000000..ecfce203fe7 --- /dev/null +++ b/packages/ff/ff.0.2.0/opam @@ -0,0 +1,18 @@ +opam-version: "2.0" +authors: [ "Danny Willems " ] +maintainer: [ "Danny Willems " ] +synopsis: "OCaml implementation of Finite Field operations" +description: "OCaml implementation of Finite Field operations" +homepage: "https://gitlab.com/dannywillems/ocaml-ff" +dev-repo: "git+https://gitlab.com/dannywillems/ocaml-ff.git" +bug-reports: "https://gitlab.com/dannywillems/ocaml-ff/issues" +license: "MIT" +depends: [ + "dune" {build & >= "2.0"} + # Has not been tested with other Zarith versions. + # The CI should verify it and it can then be extent + "zarith" {build & = "1.9.1"} + "alcotest" {with-test} +] +build: [[ "dune" "build" "-j" jobs "-p" name "@install" ]] +run-test: [[ "dune" "runtest" "-p" name "-j" jobs ]]