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