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.10"} 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.2.tar.gz" 40 checksum: [ 41 "sha256=c1bf98a32086f9d7f5519dd8263e3819f1ce6e9ec243ba84d7199be60303d452" 42 "md5=5bd9eead49e13c9b07821db80d5c0c95" 43 ] 44}