diff options
author | Daniil Baturin <daniil@baturin.org> | 2017-12-13 02:29:38 +0700 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2017-12-13 02:29:38 +0700 |
commit | 327fe126f1e8514f0f29fc3d7ec94ec26faf3a78 (patch) | |
tree | 991410d9bd9045883e2536d4fa1c6c9d47939e5a /opam | |
parent | cd7fcab62fc20a163013710d6e3d95ff0fdd3aeb (diff) | |
download | vyconf-327fe126f1e8514f0f29fc3d7ec94ec26faf3a78.tar.gz vyconf-327fe126f1e8514f0f29fc3d7ec94ec26faf3a78.zip |
Add opam packaging.
Diffstat (limited to 'opam')
-rw-r--r-- | opam | 33 |
1 files changed, 33 insertions, 0 deletions
@@ -0,0 +1,33 @@ +opam-version: "0.1" +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" +dev-repo: "git+https://github.com/vyos/vyconf" +build: [ + ["./configure" "--prefix=%{prefix}%"] + [make] +] +install: [make "install"] +remove: ["ocamlfind" "remove" "vyconf"] +depends: [ + "ocaml" {build & >="4.03.0"} + "ocamlfind" {build} + "oasis" {build} + "menhir" {build} + "ocaml-protoc" {build} + "ounit" {build} + "batteries" {build} + "lwt" {build} + "fileutils" {build} + "ppx_deriving" {build} + "ppx_deriving_yojson" {build} + "ocplib-endian" {build} + "xml-light" {build} + "toml" {build} + "sha" {build} +] + |