summaryrefslogtreecommitdiff
path: root/sid.opam
blob: 182a7e28fcad3f6528477c1fcc396f713f676008 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
opam-version: "2.0"
version: "2.0"
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.03.0" }
  "ocamlbuild" {build}
  "ocamlfind" {build}
  "oasis" {build}
  "stdint"
  "cmdliner"
  "ounit" {with-test}
]
build: [
  ["oasis" "setup"]
  ["ocaml" "setup.ml" "-configure" "--prefix" prefix "--enable-tests" {with-test}]
  ["ocaml" "setup.ml" "-build"]
  ["ocaml" "setup.ml" "-doc"] {with-doc}
]
install: [make "install"]
remove: ["ocamlfind" "remove" "sid"]
run-test: [make "test"]