-
Notifications
You must be signed in to change notification settings - Fork 9
/
opam
33 lines (30 loc) · 1.25 KB
/
opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
opam-version: "2.0"
name: "gg"
synopsis: "Basic types and tools for computer graphics in OCaml"
description: """\
Gg provides basic types for computer graphics. It defines types and
functions for floats, vectors, points, sizes, matrices, quaternions,
axis-aligned boxes, colors, color spaces, and raster data.
On top of this the Gg_kit library provides a few more tools and
algorithms for working with geometry and graphics.
Gg and Gg_kit have no dependencies. Gg is distributed under the ISC
license. Gg_kit is distributed under the ISC license and some color
schemes are distributed under the Apache 2.0 and CC0 licenses.
Home page: <http://erratique.ch/software/gg>"""
maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>"
authors: "The gg programmers"
license: ["ISC" "Apache-2.0"]
tags: ["matrix" "vector" "color" "data-structure" "graphics" "org:erratique"]
homepage: "https://erratique.ch/software/gg"
doc: "https://erratique.ch/software/gg/doc/"
bug-reports: "https://github.com/dbuenzli/gg/issues"
depends: [
"ocaml" {>= "4.08.0"}
"ocamlfind" {build}
"ocamlbuild" {build}
"topkg" {build & >= "1.0.3"}
"brr" {with-test}
"vg" {with-test}
]
build: ["ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{dev}%"]
dev-repo: "git+https://erratique.ch/repos/gg.git"