this repo has no description
at main 1.2 kB view raw
1opam-version: "2.0" 2synopsis: "Basic types for computer graphics in OCaml" 3description: """\ 4Gg is an OCaml module providing basic types for computer graphics. 5 6It defines types and functions for floats, vectors, points, sizes, 7matrices, quaternions, axis-aligned boxes, colors, color spaces, and 8raster data. 9 10Gg is made of a single module, and is distributed under the ISC 11license. 12 13Home page: <http://erratique.ch/software/gg>""" 14maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 15authors: "The gg programmers" 16license: "ISC" 17tags: ["matrix" "vector" "color" "data-structure" "graphics" "org:erratique"] 18homepage: "https://erratique.ch/software/gg" 19doc: "https://erratique.ch/software/gg/doc/" 20bug-reports: "https://github.com/dbuenzli/gg/issues" 21depends: [ 22 "ocaml" {>= "4.08.0"} 23 "ocamlfind" {build} 24 "ocamlbuild" {build} 25 "topkg" {build & >= "1.0.3"} 26] 27build: ["ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{dev}%"] 28dev-repo: "git+https://erratique.ch/repos/gg.git" 29url { 30 src: "https://erratique.ch/software/gg/releases/gg-1.0.0.tbz" 31 checksum: 32 "sha512=86e3db9778103c6a9e3444585716c12dba0ba1af6b60e7b76f9cf282a23aa4cb075c764c470e9a878c3c90fe4a41e835be9180aaf0a4bc43ce3ad299b352e611" 33} 34x-maintenance-intent: ["(latest)"]