diff options
Diffstat (limited to 'sid.opam')
-rw-r--r-- | sid.opam | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -1,21 +1,24 @@ opam-version: "2.0" -version: "0" +version: "1" synopsis: "Handle security identfiers" maintainer: "Philipp Gesang <phg@phi-gamma.net>" bug-reports: "https://gitlab.com/phgsng/ocaml-sid" +dev-repo: "git+https://gitlab.com/phgsng/ocaml-sid.git" homepage: "https://gitlab.com/phgsng/ocaml-sid" authors: [ "Philipp Gesang" ] license: "LGPL-3.0-only with OCaml linking exception" + depends: [ + "ocaml" { >= "4.02.0" } "ocamlbuild" {build} "oasis" {build} "stdint" - "ounit" {test} + "ounit" {with-test} ] build: [ ["oasis" "setup"] - ["ocaml" "setup.ml" "-configure" "--prefix" prefix] + ["ocaml" "setup.ml" "-configure" "--prefix" prefix "--enable-tests"] ["ocaml" "setup.ml" "-build"] ["ocaml" "setup.ml" "-doc"] {with-doc} ] |