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"
18depends: [
19 "dune" {>= "2.1"}
20 "dune-configurator"
21 "conf-libX11" {os != "win32"}
22 "conf-pkg-config" {os != "win32"}
23 "ocaml" {>= "4.09.0~~"}
24]
25build: [
26 ["dune" "subst"] {dev}
27 [
28 "dune"
29 "build"
30 "-p"
31 name
32 "-j"
33 jobs
34 "@install"
35 "@runtest" {with-test}
36 "@doc" {with-doc}
37 ]
38]
39dev-repo: "git+https://github.com/ocaml/graphics.git"
40x-commit-hash: "9a869c5e1b366353a4e56423a562e78bdcc4de74"
41url {
42 src:
43 "https://github.com/ocaml/graphics/releases/download/5.1.1/graphics-5.1.1.tbz"
44 checksum: [
45 "sha256=286c83e3ded9287036c5e5c77b39a1dcfd73a1296b7b587937dce3900166328e"
46 "sha512=15adbe03211e7392a2fded2d9fd5e0cc2c532b4a1de3b6c90945e9e99cc4f419583a204f357f8c9fd92d1ffce48e13e1f146da1f009eb4645150b7394f799e0a"
47 ]
48}