Skip to content

Commit 56c5200

Browse files
authored
Merge pull request ocaml#21878 from fccm/master
Just a minor update, to compile "ocaml-sfml" with ocaml 4.14.0
2 parents f6db885 + 708f3c5 commit 56c5200

File tree

2 files changed

+82
-0
lines changed
  • packages/sfml

2 files changed

+82
-0
lines changed

packages/sfml/sfml.0.09.2/opam

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
opam-version: "2.0"
2+
maintainer: "Florent Monnier <[email protected]>"
3+
authors: [
4+
"Florent Monnier"
5+
"Sylvain Boilard"
6+
]
7+
8+
homepage: "https://github.com/fccm/ocaml-sfml"
9+
dev-repo: "git+https://github.com/fccm/ocaml-sfml.git"
10+
bug-reports: "https://github.com/fccm/ocaml-sfml/issues"
11+
doc: "http://fccm.github.io/ocaml-sfml/"
12+
13+
license: "zlib-acknowledgement"
14+
synopsis: "Bindings to the SFML multimedia library"
15+
description: """
16+
SFML provides a simple interface to the various components of your PC, to ease
17+
the development of games and multimedia applications.
18+
It is composed of five modules: system, window, graphics, audio and network.
19+
20+
SFML homepage: https://www.sfml-dev.org/
21+
22+
This version of the bindings is known to work with SFML 2.5.1
23+
"""
24+
tags: [ "bindings" "graphics" "audio" "multimedia" "gamedev" "opengl" "network" ]
25+
26+
depends: [
27+
"ocaml" {> "4.05.1"}
28+
"ocamlfind" {build}
29+
"conf-sfml2"
30+
]
31+
build: [
32+
[make "-C" "src" "cxx_all"]
33+
]
34+
install: [
35+
[make "-C" "src" "findinstall_cxx"]
36+
]
37+
38+
url {
39+
src: "http://decapode314.free.fr/ocaml/SFML/downloads/ocaml-sfml-0.09.2.tar.gz"
40+
checksum: "md5=9ae99bb47bb68d5181d01b7bbc78a351"
41+
}

packages/sfml/sfml.0.09/opam

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
opam-version: "2.0"
2+
maintainer: "Florent Monnier <[email protected]>"
3+
authors: [
4+
"Florent Monnier"
5+
"Sylvain Boilard"
6+
]
7+
8+
homepage: "https://github.com/fccm/ocaml-sfml"
9+
dev-repo: "git+https://github.com/fccm/ocaml-sfml.git"
10+
bug-reports: "https://github.com/fccm/ocaml-sfml/issues"
11+
doc: "http://fccm.github.io/ocaml-sfml/"
12+
13+
license: "zlib-acknowledgement"
14+
synopsis: "Bindings to the SFML multimedia library"
15+
description: """
16+
SFML provides a simple interface to the various components of your PC, to ease
17+
the development of games and multimedia applications.
18+
It is composed of five modules: system, window, graphics, audio and network.
19+
20+
SFML homepage: https://www.sfml-dev.org/
21+
22+
This version of the bindings is known to work with SFML 2.5.1
23+
"""
24+
tags: [ "bindings" "graphics" "audio" "multimedia" "gamedev" "opengl" "network" ]
25+
26+
depends: [
27+
"ocaml" {> "4.05.1" & < "4.12"}
28+
"ocamlfind" {build}
29+
"conf-sfml2"
30+
]
31+
build: [
32+
[make "-C" "src" "cxx_all"]
33+
]
34+
install: [
35+
[make "-C" "src" "findinstall_cxx"]
36+
]
37+
38+
url {
39+
src: "https://github.com/fccm/ocaml-sfml/archive/v0.09.tar.gz"
40+
checksum: "md5=01ffc5b471d774f2d6234c639b067f04"
41+
}

0 commit comments

Comments
 (0)