File: dune-project

package info (click to toggle)
ocaml-graphics 5.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 384 kB
  • sloc: ansic: 2,394; ml: 1,078; makefile: 14
file content (31 lines) | stat: -rw-r--r-- 843 bytes parent folder | download
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
(lang dune 2.7)
(name graphics)

(generate_opam_files true)

(license "LGPL-2.1-only with OCaml-LGPL-linking-exception")
(maintainers david.allsopp@metastack.com)
(authors "Xavier Leroy"
         "Jun Furuse"
         "J-M Geffroy"
         "Jacob Navia"
         "Pierre Weis")
(source (github ocaml/graphics))
(documentation https://ocaml.github.io/graphics/)

(package
 (name graphics)
 (depends
   "dune-configurator"
  ("conf-libX11" (<> :os win32))
  ("conf-libXft" (<> :os win32))
  ("conf-pkg-config" (<> :os win32))
  ("ocaml" (>= "4.09.0~~")))
 (synopsis "The OCaml graphics library")
 (description "\
The graphics library provides a set of portable drawing
primitives. Drawing takes place in a separate window that is created
when Graphics.open_graph is called.

This library used to be distributed with OCaml up to OCaml 4.08.
"))