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"
9build: [
10 [
11 "ocaml"
12 "setup.ml"
13 "-configure"
14 "--prefix"
15 prefix
16 "--%{lablgtk:enable}%-lablgtk2"
17 ]
18 ["ocaml" "setup.ml" "-build"]
19 [
20 "ocaml"
21 "setup.ml"
22 "-configure"
23 "--enable-tests"
24 "--%{lablgtk:enable}%-lablgtk2"
25 ] {with-test}
26 ["ocaml" "setup.ml" "-build"] {with-test}
27 ["ocaml" "setup.ml" "-test"] {with-test}
28 ["ocaml" "setup.ml" "-doc"] {with-doc}
29]
30install: ["ocaml" "setup.ml" "-install"]
31remove: [
32 ["ocamlfind" "remove" "cairo2"]
33]
34depends: [
35 "ocaml" {< "5.0"}
36 "base-bigarray"
37 "ocamlfind" {build}
38 "ocamlbuild" {build}
39 "conf-cairo" {build}
40]
41depopts: [
42 "lablgtk"
43]
44synopsis: "Binding to Cairo, a 2D Vector Graphics Library."
45description: """
46This is a binding to Cairo, a 2D graphics library with support for
47multiple output devices. Currently supported output targets include
48the X Window System, Quartz, Win32, image buffers, PostScript, PDF,
49and SVG file output."""
50flags: light-uninstall
51url {
52 src:
53 "https://github.com/Chris00/ocaml-cairo/releases/download/0.5/cairo2-0.5.tar.gz"
54 checksum: [
55 "sha256=12b2468ebc8af481f2f01de0817410a1b880ab87d76498d8d904fe4c8e6ba994"
56 "md5=7081cf03e729ce05e5399d3023f267c2"
57 ]
58}