blob: ce5e89019a3d0a74f6b6e7493ae3ca18dc028f23 (
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
30
31
32
33
34
35
36
|
opam-version: "1.2"
name: "vyconf"
version: "0.1"
maintainer: "Daniil Baturin <daniil@baturin.org>"
authors: "VyOS maintainers and contributors <maintainers@vyos.net>"
homepage: "https://github.com/vyos/vyconf"
bug-reports: "https://phabricator.vyos.net/maniphest"
license: "LGPL with OCaml linking exception"
description: "An appliance configuration framework"
dev-repo: "git+https://github.com/vyos/vyconf"
build: [
["./configure" "--prefix=%{prefix}%"]
[make]
]
install: [make "install"]
remove: ["ocamlfind" "remove" "vyconf"]
depends: [
"ocamlfind" {build}
"oasis" {build}
"menhir" {build}
"ocaml-protoc" {build}
"ounit" {build}
"batteries" {build}
"lwt" {build & >= "4.1.0"}
"lwt_ppx" {build}
"lwt_log" {build}
"fileutils" {build}
"ppx_deriving" {build}
"ppx_deriving_yojson" {build}
"ocplib-endian" {build}
"xml-light" {build}
"toml" {build}
"sha" {build}
"pcre" {build}
]
available: ocaml-version >= "4.03.0"
|