this repo has no description
1opam-version: "2.0"
2synopsis: "Runner executable for Diskuv OCaml (DKML) installation"
3description:
4 "The runner executable is responsible for loading and running all DKML installation components."
5maintainer: ["opensource+diskuv-ocaml@support.diskuv.com"]
6authors: ["Diskuv, Inc. <opensource+diskuv-ocaml@support.diskuv.com>"]
7license: "Apache-2.0"
8homepage: "https://github.com/diskuv/dkml-install-api"
9bug-reports: "https://github.com/diskuv/dkml-install-api/issues"
10# Components can be assembled on any "host" build machine defined in
11# https://github.com/diskuv/dkml-install-api/blob/5cfd7b57c79d990c76a9bdc8f8f0fa9f6fd5346f/runner/src/host_abi.ml
12# into a installer that will run on any end-user machine defined in
13# https://github.com/diskuv/dkml-install-api/blob/5cfd7b57c79d990c76a9bdc8f8f0fa9f6fd5346f/runner/src/ocaml_abi.ml
14available: os = "win32" | os = "linux" | os = "macos"
15depends: [
16 "ocaml" {>= "4.09" & < "5.1"}
17 "alcotest" {>= "1.4.0" & with-test}
18 "odoc" {>= "1.5.3" & with-doc}
19 "dkml-install" {= version}
20 "dune" {>= "2.9"}
21 "ppx_expect" {>= "v0.14.1"}
22 "astring" {>= "0.8.5"}
23 "bos" {>= "0.2.0"}
24 "cmdliner" {>= "1.0.4" & < "2.0.0"}
25 "fmt" {>= "0.8.9"}
26 "logs" {>= "0.7.0"}
27 "diskuvbox" {>= "0.1.0"}
28]
29dev-repo: "git+https://github.com/diskuv/dkml-install-api.git"
30build: [
31 ["dune" "subst"] {dev}
32 [
33 "dune"
34 "build"
35 "-p"
36 name
37 "-j"
38 jobs
39 "--promote-install-files=false"
40 "@install"
41 "@runtest" {with-test}
42 "@doc" {with-doc}
43 ]
44 ["dune" "install" "-p" name "--create-install-files" name]
45]
46url {
47 src: "https://github.com/diskuv/dkml-install-api/archive/v0.2.0.tar.gz"
48 checksum: [
49 "md5=d65935d6a9a790fec09cfc50f6b04c43"
50 "sha512=08aeffeffa41b10ca54c9329bf9f6ec9219060c2e62c3a389d08b096513fe3dc048782e28d5006cae6a35e124cfd09441eb41a063c6a3f12fc6e60fa9d2acef7"
51 ]
52}