-
Notifications
You must be signed in to change notification settings - Fork 0
/
dkml-install-installer.opam
41 lines (41 loc) · 1.37 KB
/
dkml-install-installer.opam
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
37
38
39
40
41
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.5.3"
synopsis: "Build tools for DkML installers"
description:
"Build-time executables that can generate Dune include files which will compile essential end-user executables."
maintainer: ["[email protected]"]
authors: ["Diskuv, Inc. <[email protected]>"]
license: "Apache-2.0"
homepage: "https://github.com/diskuv/dkml-install-api"
bug-reports: "https://github.com/diskuv/dkml-install-api/issues"
depends: [
"dune" {>= "3.2"}
"ocaml" {>= "4.08.0"}
"alcotest" {>= "1.4.0" & with-test}
"dkml-install" {= version}
"dkml-install-runner" {= version}
"re" {>= "1.3.0"}
"crunch" {>= "3.3.1"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/diskuv/dkml-install-api.git"
# Components can be assembled on any "host" build machine defined in
# https://github.com/diskuv/dkml-install-api/blob/5cfd7b57c79d990c76a9bdc8f8f0fa9f6fd5346f/runner/src/host_abi.ml
# into a installer that will run on any end-user machine defined in
# https://github.com/diskuv/dkml-install-api/blob/5cfd7b57c79d990c76a9bdc8f8f0fa9f6fd5346f/runner/src/ocaml_abi.ml
available: os = "win32" | os = "linux" | os = "macos"