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" & < "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.09.tar.gz" 40 checksum: [ 41 "sha256=75e28f425d6c40f39f7aac53b413da3d48ecd50aa88cdf644d38a14897a59a30" 42 "md5=01ffc5b471d774f2d6234c639b067f04" 43 ] 44}