this repo has no description
1opam-version: "2.0" 2maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 3homepage: "http://erratique.ch/software/gg" 4authors: [ "The gg programmers" ] 5doc: "http://erratique.ch/software/gg/doc/Gg" 6dev-repo: "git+http://erratique.ch/repos/gg.git" 7bug-reports: "https://github.com/dbuenzli/gg/issues" 8tags: [ "matrix" "vector" "color" "data-structure" "graphics" "org:erratique"] 9license: "ISC" 10depends: [ 11 "ocaml" {>= "4.02.2" & < "5.0"} 12 "ocamlfind" {build} 13 "ocamlbuild" {build} 14 "topkg" {build} 15 "base-bigarray" 16# "bench" {with-test} 17] 18build: [[ 19 "ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%" 20]] 21synopsis: """Basic types for computer graphics in OCaml""" 22description: """\ 23 24Gg is an OCaml module providing basic types for computer graphics. 25 26It defines types and functions for floats, vectors, points, sizes, 27matrices, quaternions, axis-aligned boxes, colors, color spaces, and 28raster data. 29 30Gg is made of a single module, depends on bigarrays, and is 31distributed under the ISC license. 32""" 33url { 34 src: "http://erratique.ch/software/gg/releases/gg-0.9.3.tbz" 35 checksum: [ 36 "sha256=eafa2bca019ddc89aab333ec086080108f376dc08f40fc340b6cd70a8916b673" 37 "md5=1801fc7b6af16c597ef0bfaacc12cd5b" 38 ] 39}