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