-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathbogue.opam
52 lines (47 loc) · 1.42 KB
/
bogue.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
43
44
45
46
47
48
49
50
51
52
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "20250207"
synopsis: "GUI library for ocaml, with animations, based on SDL2"
description: """
Bogue is an all-purpose GUI library for ocaml, with animations, based on SDL2.
This library can be used for games or for adding GUI elements to any
ocaml program.
It uses the SDL2 renderer library, which makes it quite fast.
It is themable, and does not try to look like your desktop. Instead,
it will look the same on every platform.
Graphics output is scalable, and hence easily adapts to Hi-DPI
displays.
Programming with bogue is easy if you're used to GUIs with widgets,
layouts, callbacks, and of course it has a functional flavor. It uses
Threads when non-blocking reactions are needed."""
maintainer: ["Vu Ngoc San <[email protected]>"]
authors: ["Vu Ngoc San <[email protected]>"]
license: "ISC"
tags: ["gui"]
homepage: "https://github.com/sanette/bogue"
doc: "http://sanette.github.io/bogue/Bogue.html"
bug-reports: "https://github.com/sanette/bogue/issues"
depends: [
"dune" {>= "2.7"}
"tsdl-image" {>= "0.3.0"}
"tsdl-ttf" {>= "0.3"}
"ocaml" {>= "4.08.0"}
"xdg" {>= "3.4.0"}
"tsdl" {> "0.9.9"}
"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/sanette/bogue.git"