this repo has no description
1opam-version: "2.0" 2maintainer: "Christophe Troestler <Christophe.Troestler@umons.ac.be>" 3authors: [ "Christophe Troestler <Christophe.Troestler@umons.ac.be>" 4 "Pierre Hauweele <pierre@hauweele.net>" ] 5license: "LGPL-3.0-only WITH OCaml-LGPL-linking-exception" 6homepage: "https://github.com/Chris00/ocaml-cairo" 7dev-repo: "git+https://github.com/Chris00/ocaml-cairo.git" 8bug-reports: "https://github.com/Chris00/ocaml-cairo/issues" 9doc: "https://Chris00.github.io/ocaml-cairo/doc" 10tags: ["Cairo" "stroke" "drawing" "tutorial"] 11build: [ 12 ["dune" "subst"] {dev} 13 ["dune" "build" "-p" name "-j" jobs] 14 ["dune" "runtest" "-p" name "-j" jobs] {with-test & ocaml:version < "4.10"} 15 ["dune" "build" "@doc"] {with-doc} 16] 17depends: [ 18 "ocaml" {>= "4.02" & < "5.0.0"} 19 "base-bigarray" 20 "dune" {>= "1.1"} 21 "dune-configurator" 22 "conf-cairo" 23] 24depopts: [ 25 "conf-freetype" 26] 27conflicts: [ 28 "cairo" {= "0.4.1"} 29 "cairo" {= "0.4.2"} 30] 31synopsis: "Binding to Cairo, a 2D Vector Graphics Library" 32description: """ 33This is a binding to Cairo, a 2D graphics library with support for 34multiple output devices. Currently supported output targets include 35the X Window System, Quartz, Win32, image buffers, PostScript, PDF, 36and SVG file output.""" 37url { 38 src: 39 "https://github.com/Chris00/ocaml-cairo/releases/download/0.6/cairo2-0.6.tbz" 40 checksum: [ 41 "sha256=1a328a82f2efd306cc9ea6d9ee04b5f97fdecbc2442e4f996816b7566f3c58cc" 42 "md5=9147030f57e10c9e9665396b92f6c9cc" 43 ] 44}