blob: d4177606ab43a0639ca242e090ecbc647fb3c48d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
opam-version: "2.0"
version: "0"
synopsis: "Handle security identfiers"
maintainer: "Philipp Gesang <phg@phi-gamma.net>"
bug-reports: "https://gitlab.com/phgsng/ocaml-sid"
homepage: "https://gitlab.com/phgsng/ocaml-sid"
authors: [ "Philipp Gesang" ]
license: "LGPL-3.0-only"
depends: [
"ocamlbuild" {build}
"oasis" {build}
"stdint"
"ounit" {test}
]
build: [
["oasis" "setup"]
["ocaml" "setup.ml" "-configure"]
["ocaml" "setup.ml" "-build"]
]
install: [make "install"]
run-test: [make "test"]
|