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" {>= "1.11"} 20 "conf-libX11" 21 "ocaml" {>= "4.09.0~~" & < "4.10"} 22] 23build: [ 24 ["dune" "subst"] {dev} 25 [ 26 "dune" 27 "build" 28 "-p" 29 name 30 "-j" 31 jobs 32 "@install" 33 "@runtest" {with-test} 34 "@doc" {with-doc} 35 ] 36] 37dev-repo: "git+https://github.com/ocaml/graphics.git" 38url { 39 src: 40 "https://github.com/ocaml/graphics/releases/download/5.0.0/graphics-5.0.0.tbz" 41 checksum: [ 42 "sha256=2dcf60d552aeb2b8bf6c1fe1964c5affe8bfe38bc4b86259ee4dcbeba230155d" 43 "sha512=7714e4f8cd8757d1ed3e919d00da0e1365b0e24b74560c620c4d4a12f85a62a6bbbb76ce436bed6237876669e4fef883d390ab1faf2b7ef2e07cd6ce838ed222" 44 ] 45}