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