this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #25113 from dbuenzli/b0-publish-vg.0.9.5

Add: vg.0.9.5

authored by

Marcello Seri and committed by
GitHub
d21a42cf fc0c2fd5

+68
+68
packages/vg/vg.0.9.5/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Declarative 2D vector graphics for OCaml" 3 + description: """\ 4 + Vg is a declarative 2D vector graphics library. Images are values that 5 + denote functions mapping points of the cartesian plane to colors and 6 + combinators are provided to define and compose them. 7 + 8 + Renderers for PDF, SVG, Cairo and the HTML canvas are distributed with the 9 + module. An API allows to implement new renderers. 10 + 11 + Vg is distributed under the ISC license. Vg and the SVG renderer 12 + depend on [Gg]. The PDF renderer depends on [Otfm], the HTML canvas 13 + renderer depends on [Brr], the Cairo renderer depends on [cairo2]. 14 + 15 + [Gg]: http://erratique.ch/software/gg 16 + [Otfm]: http://erratique.ch/software/otfm 17 + [Brr]: http://erratique.ch/software/brr 18 + [cairo2]: https://github.com/Chris00/ocaml-cairo 19 + 20 + Home page: http://erratique.ch/software/vg""" 21 + maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 22 + authors: "The vg programmers" 23 + license: "ISC" 24 + tags: [ 25 + "pdf" 26 + "svg" 27 + "canvas" 28 + "cairo" 29 + "browser" 30 + "declarative" 31 + "graphics" 32 + "org:erratique" 33 + ] 34 + homepage: "https://erratique.ch/software/vg" 35 + doc: "https://erratique.ch/software/vg/doc" 36 + bug-reports: "https://github.com/dbuenzli/vg/issues" 37 + depends: [ 38 + "ocaml" {>= "4.14.0"} 39 + "ocamlfind" {build} 40 + "ocamlbuild" {build} 41 + "topkg" {build & >= "1.0.3"} 42 + "gg" {>= "1.0.0"} 43 + ] 44 + depopts: ["brr" "cairo2" "otfm"] 45 + conflicts: [ 46 + "brr" {< "0.0.6"} 47 + "cairo2" {< "0.6"} 48 + "otfm" {< "0.3.0"} 49 + ] 50 + build: [ 51 + "ocaml" 52 + "pkg/pkg.ml" 53 + "build" 54 + "--dev-pkg" 55 + "%{dev}%" 56 + "--with-brr" 57 + "%{brr:installed}%" 58 + "--with-cairo2" 59 + "%{cairo2:installed}%" 60 + "--with-otfm" 61 + "%{otfm:installed}%" 62 + ] 63 + dev-repo: "git+https://erratique.ch/repos/vg.git" 64 + url { 65 + src: "https://erratique.ch/software/vg/releases/vg-0.9.5.tbz" 66 + checksum: 67 + "sha512=ccd0d0f61cdbdb3420b5f4d747fe6e6b95e487738f70163a6e26396b1eeb9a42118306bc9c2c9afc9256171d57f81fbdf08ec558625eb5d723230aa0e9564fb6" 68 + }