blob: c0e9507bd6267077d3ca2fb81874b42f9dbcd8c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
opam-version: "2.0"
version: "0"
synopsis: "Handle security identfiers"
maintainer: "Philipp Gesang <phg@phi-gamma.net>"
authors: [ "Philipp Gesang" ]
license: "LGPLv3"
depends: [
"ocamlbuild" {build}
"oasis" {build}
"stdint"
"ounit" {test}
]
build: [
["oasis" "setup"]
["ocaml" "setup.ml" "-configure"]
["ocaml" "setup.ml" "-build"]
]
install: [make "install"]
build-test: [make "test"]
|