-
Notifications
You must be signed in to change notification settings - Fork 8
/
hello.opam
30 lines (30 loc) · 847 Bytes
/
hello.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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Minimal OCaml project for starting a new one"
description:
"Hello is the classic hello world but organised as a proper OCaml project incuding command-line parsing and online help. It serves as a starting point for new projects."
maintainer: ["Christian Lindig <lindig@gmail.com>"]
authors: ["Christian Lindig <lindig@gmail.com>"]
license: "Unlicense"
homepage: "https://github.com/lindig/hello"
bug-reports: "https://github.com/lindig/hello/issues"
depends: [
"dune" {>= "2.0"}
"ocaml" {>= "4.08.0"}
"cmdliner" {>= "1.1.0"}
]
build: [
["dune" "subst"] {pinned}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/lindig/hello.git"