this repo has no description
1opam-version: "2.0"
2synopsis: "The OCaml graphics library"
3description: """
4The graphics library provides a set of portable drawing
5primitives. Drawing takes place in a separate window that is created
6when Graphics.open_graph is called.
7
8This library used to be distributed with OCaml up to OCaml 4.08.
9"""
10maintainer: ["jeremie@dimino.org" "david.allsopp@metastack.com"]
11authors: [
12 "Xavier Leroy" "Jun Furuse" "J-M Geffroy" "Jacob Navia" "Pierre Weis"
13]
14license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
15homepage: "https://github.com/ocaml/graphics"
16doc: "https://ocaml.github.io/graphics/"
17bug-reports: "https://github.com/ocaml/graphics/issues"
18x-maintenance-intent: ["(latest)"]
19depends: [
20 "dune" {>= "2.1"}
21 "dune-configurator"
22 "conf-libX11" {os != "win32"}
23 "conf-pkg-config" {os != "win32"}
24 "ocaml" {>= "4.09.0~~"}
25]
26build: [
27 ["dune" "subst"] {dev}
28 [
29 "dune"
30 "build"
31 "-p"
32 name
33 "-j"
34 jobs
35 "@install"
36 "@runtest" {with-test}
37 "@doc" {with-doc}
38 ]
39]
40dev-repo: "git+https://github.com/ocaml/graphics.git"
41x-commit-hash: "fbfa38f50f9df5d562d5c892ae12cec2c695776d"
42url {
43 src:
44 "https://github.com/ocaml/graphics/releases/download/5.1.2/graphics-5.1.2.tbz"
45 checksum: [
46 "sha256=400fd81d23f1cb4146b96979342c247971dd54f5879ffd2f80ec7cd0212e32d4"
47 "sha512=1387c1ecf5dfd62c3927f1f8ce0bcc8b162ef22f15bfd41eba47c955091f7ce5f19395beab550d31cff38d22c4ad097350975381e60936a0004271e96f65b09b"
48 ]
49}