-
Notifications
You must be signed in to change notification settings - Fork 175
/
rwo.opam
67 lines (67 loc) · 1.4 KB
/
rwo.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Real World OCaml book sources"
description: """
Scripts and sources to compile the Real World OCaml
second edition book. See https://realworldocaml.org/"""
maintainer: ["[email protected]"]
authors: ["Anil Madhavapeddy" "Yaron Minsky"]
license: "ISC"
homepage: "https://github.com/realworldocaml/book"
bug-reports: "https://github.com/realworldocaml/book/issues"
depends: [
"dune" {>= "2.9"}
"ocaml" {>= "4.14.0" & < "4.15.0"}
"alcotest"
"async"
"async_graphics"
"atdgen"
"base"
"cmdliner" {>= "1.1.0"}
"cohttp-async"
"conf-ncurses"
"conf-tzdata"
"core" {>= "v0.15.0"}
"core_bench"
"ctypes"
"ctypes-foreign"
"fmt"
"lambdasoup"
"mdx"
"ocaml-compiler-libs"
"ocaml-print-intf"
"patdiff"
"pcre"
"ppx_jane"
"re"
"sexp_pretty"
"textwrap"
"tls"
"yojson"
"conf-pandoc"
"conf-texlive"
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"--promote-install-files=false"
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
["dune" "install" "-p" name "--create-install-files" name]
]
dev-repo: "git+https://github.com/realworldocaml/book.git"
pin-depends: [
[ "async_graphics.0.7.0+dev" "git+https://github.com/avsm/async_graphics.git#update-to-v15" ]
]
depexts: [
["texlive-full"] {os-family = "debian"}
]