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/png"
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.08.1" & < "4.12"}
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: "https://github.com/fccm/ocaml-sfml/archive/v0.08.3.tar.gz"
40 checksum: [
41 "sha256=8febeaab6225b07a4b57c6cc9f9a713b0309165f84c09b2e20fb304956fc5ca2"
42 "md5=24b7193f385a2063eca2f0124572f36c"
43 ]
44}