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.0"} 20 "dune-configurator" 21 "conf-libX11" 22 "ocaml" {>= "4.09.0~~"} 23 "conf-pkg-config" 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" 40url { 41 src: 42 "https://github.com/ocaml/graphics/releases/download/5.1.0/graphics-5.1.0.tbz" 43 checksum: [ 44 "sha256=c596ed036574c64bdaa313a7198953f081becfe5e3d78db1a2913170eb49e99b" 45 "sha512=4783a8609ec1fbe09deac083856ac6c3fc656edcd8e417b026352068a45a3246db1e0ee73ef21759c971516dd33e40c69d14220a7a9092af7e522239c35c6c9e" 46 ] 47}