-
Notifications
You must be signed in to change notification settings - Fork 30
/
opam
42 lines (39 loc) · 1.14 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
34
35
36
37
38
39
40
41
42
opam-version: "2.0"
name: "tsdl"
synopsis: "Thin bindings to SDL for OCaml"
description: """\
Tsdl is an OCaml library providing thin bindings to the cross-platform
[SDL library].
Tsdl depends on the C library SDL 2.0.18 (or later),
[ocaml-ctypes][ctypes]. Tsdl is distributed under the ISC license.
[SDL library]: https://www.libsdl.org/
[ctypes]: https://github.com/ocamllabs/ocaml-ctypes
Home page: <http://erratique.ch/software/tsdl>"""
maintainer: "Daniel Bünzli <daniel.buenzl [email protected]>"
authors: "The tsdl programmers"
license: "ISC"
tags: [
"audio"
"bindings"
"graphics"
"media"
"opengl"
"input"
"hci"
"org:erratique"
]
homepage: "https://erratique.ch/software/tsdl"
doc: "https://erratique.ch/software/tsdl/doc/"
bug-reports: "https://github.com/dbuenzli/tsdl/issues"
depends: [
"ocaml" {>= "4.08.0"}
"ocamlfind" {build}
"ocamlbuild" {build}
"topkg" {build & >= "1.0.3"}
"conf-sdl2"
"ctypes" {>= "0.21.1"}
"ctypes-foreign" {>= "0.21.1"}
]
available: os-distribution != "opensuse-leap" | os-version >= "16"
build: ["ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{dev}%"]
dev-repo: "git+https://erratique.ch/repos/tsdl.git"