diff options
author | Philipp Gesang <phg@phi-gamma.net> | 2018-11-06 13:22:51 +0100 |
---|---|---|
committer | Philipp Gesang <phg@phi-gamma.net> | 2018-11-06 14:00:03 +0100 |
commit | aeb05e247128d00681fcf2b25baa589743e44768 (patch) | |
tree | 651bc51b7c64b519e342e448e54c5ad6b8f51980 /sid.opam | |
parent | 01a83e0f1fb67e85f77b87a159e47a1d3625b66b (diff) | |
download | ocaml-sid-aeb05e247128d00681fcf2b25baa589743e44768.tar.gz |
fix opam build, bump versionv1.1
- Add cmdliner to deps,
- set {with-test} filter on unit tests,
- version 1 → 1.1.
Diffstat (limited to 'sid.opam')
-rw-r--r-- | sid.opam | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,5 @@ opam-version: "2.0" -version: "1" +version: "1.1" synopsis: "Handle security identfiers" maintainer: "Philipp Gesang <phg@phi-gamma.net>" @@ -14,11 +14,12 @@ depends: [ "ocamlbuild" {build} "oasis" {build} "stdint" + "cmdliner" "ounit" {with-test} ] build: [ ["oasis" "setup"] - ["ocaml" "setup.ml" "-configure" "--prefix" prefix "--enable-tests"] + ["ocaml" "setup.ml" "-configure" "--prefix" prefix "--enable-tests" {with-test}] ["ocaml" "setup.ml" "-build"] ["ocaml" "setup.ml" "-doc"] {with-doc} ] |