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 | |
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.
-rw-r--r-- | _oasis | 2 | ||||
-rw-r--r-- | sid.opam | 5 |
2 files changed, 4 insertions, 3 deletions
@@ -1,7 +1,7 @@ OASISFormat: 0.4 Name: sid Synopsis: Handle security identifiers (SID). -Version: 1 +Version: 1.1 Authors: phg License: LGPL-3 with OCaml linking exception BuildTools: ocamlbuild @@ -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} ] |