-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathgraphics.opam
42 lines (41 loc) · 1.12 KB
/
graphics.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
34
35
36
37
38
39
40
41
42
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "The OCaml graphics library"
description: """
The graphics library provides a set of portable drawing
primitives. Drawing takes place in a separate window that is created
when Graphics.open_graph is called.
This library used to be distributed with OCaml up to OCaml 4.08.
"""
maintainer: ["[email protected]" "[email protected]"]
authors: [
"Xavier Leroy" "Jun Furuse" "J-M Geffroy" "Jacob Navia" "Pierre Weis"
]
license: "LGPL-2.1-only with OCaml-LGPL-linking-exception"
homepage: "https://github.com/ocaml/graphics"
doc: "https://ocaml.github.io/graphics/"
bug-reports: "https://github.com/ocaml/graphics/issues"
depends: [
"dune" {>= "2.7"}
"dune-configurator"
"conf-libX11" {os != "win32"}
"conf-pkg-config" {os != "win32"}
"ocaml" {>= "4.09.0~~"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/ocaml/graphics.git"
x-maintenance-intent: ["(latest)"]