-
Notifications
You must be signed in to change notification settings - Fork 8
/
dune-project
43 lines (36 loc) · 1.32 KB
/
dune-project
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
(lang dune 2.1)
(name ocaml-canvas)
(version 1.0.0)
(formatting disabled)
(generate_opam_files false)
(license "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception")
(authors "David Declerck")
(maintainers [email protected])
(source (github OCamlPro/ocaml-canvas))
(bug_reports https://github.com/OCamlPro/ocaml-canvas/issues)
(homepage https://ocamlpro.github.io/ocaml-canvas/)
(documentation https://ocamlpro.github.io/ocaml-canvas/sphinx)
(package
(name ocaml-canvas)
(depends
(ocaml (>= 4.03))
(dune (>= 2.2))
(dune-configurator (>= 1.11))
(react (>= 1.0))
(odoc (and :with-doc (>= 1.4)))
(conf-freetype (and (<> :os macos) (<> :os win32)))
(conf-libfontconfig (and (<> :os macos) (<> :os win32)))
(conf-xkbcommon (and (<> :os macos) (<> :os win32)))
(conf-libxcb (and (<> :os macos) (<> :os win32)))
(conf-libxcb-shm (and (<> :os macos) (<> :os win32)))
(conf-libxcb-image (and (<> :os macos) (<> :os win32)))
(conf-libxcb-xkb (and (<> :os macos) (<> :os win32)))
(conf-libxcb-keysyms (and (<> :os macos) (<> :os win32))))
(depopts
(js_of_ocaml (>= 3.6))
(conf-libwayland (and (<> :os macos) (<> :os win32)))
(conf-wayland-protocols (and (<> :os macos) (<> :os win32))))
(synopsis "The OCaml-Canvas library")
(description "\
The OCaml-Canvas library provides a portable Canvas for OCaml.
"))