Skip to content

Commit 2fa55bc

Browse files
authored
Merge pull request ocaml#22493 from sanette/opam-publish-bogue.20221112
Package bogue.20221112
2 parents 03cdcda + d593d3b commit 2fa55bc

File tree

1 file changed

+57
-0
lines changed
  • packages/bogue/bogue.20221112

1 file changed

+57
-0
lines changed

packages/bogue/bogue.20221112/opam

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# This file is generated by dune, edit dune-project instead
2+
opam-version: "2.0"
3+
synopsis: "GUI library for ocaml, with animations, based on SDL2"
4+
description: """
5+
Bogue is an all-purpose GUI library for ocaml, with animations, based on SDL2.
6+
7+
This library can be used for games or for adding GUI elements to any
8+
ocaml program.
9+
10+
It uses the SDL2 renderer library, which makes it quite fast.
11+
12+
It is themable, and does not try to look like your desktop. Instead,
13+
it will look the same on every platform.
14+
15+
Graphics output is scalable, and hence easily adapts to Hi-DPI
16+
displays.
17+
18+
Programming with bogue is easy if you're used to GUIs with widgets,
19+
layouts, callbacks, and of course it has a functional flavor. It uses
20+
Threads when non-blocking reactions are needed."""
21+
maintainer: ["Vu Ngoc San <[email protected]>"]
22+
authors: ["Vu Ngoc San <[email protected]>"]
23+
license: "ISC"
24+
tags: ["gui"]
25+
homepage: "https://github.com/sanette/bogue"
26+
doc: "http://sanette.github.io/bogue/Bogue.html"
27+
bug-reports: "https://github.com/sanette/bogue/issues"
28+
depends: [
29+
"dune" {>= "2.7"}
30+
"tsdl-image" {>= "0.3.0"}
31+
"tsdl-ttf" {>= "0.3"}
32+
"ocaml" {>= "4.08.0"}
33+
"tsdl" {>= "0.9.7" & < "0.9.9"}
34+
"odoc" {with-doc}
35+
]
36+
build: [
37+
["dune" "subst"] {dev}
38+
[
39+
"dune"
40+
"build"
41+
"-p"
42+
name
43+
"-j"
44+
jobs
45+
"@install"
46+
"@runtest" {with-test}
47+
"@doc" {with-doc}
48+
]
49+
]
50+
dev-repo: "git+https://github.com/sanette/bogue.git"
51+
url {
52+
src: "https://github.com/sanette/bogue/archive/20221112.tar.gz"
53+
checksum: [
54+
"md5=c4422a3b7e672fa2e9354dbc97777d17"
55+
"sha512=c0d0ea713b5be2b42a893f6b94c4042952673f0e8873c33674e97c628bd47c4aa302f6d238ae625892025c6f2fc474ea76e68e5000685dd6b6680f2856f5275a"
56+
]
57+
}

0 commit comments

Comments
 (0)