this repo has no description
1opam-version: "2.0" 2synopsis: "Thin bindings to SDL for OCaml" 3description: """\ 4Tsdl is an OCaml library providing thin bindings to the cross-platform 5[SDL library]. 6 7Tsdl depends on the [SDL 2.0.10][sdl] C library (or later), 8[ocaml-ctypes][ctypes] and the `result` compatibility package. 9Tsdl is distributed under the ISC license. 10 11[SDL library]: https://www.libsdl.org/ 12[ctypes]: https://github.com/ocamllabs/ocaml-ctypes 13 14Home page: <http://erratique.ch/software/tsdl>""" 15maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 16authors: "The tsdl programmers" 17license: "ISC" 18tags: [ 19 "audio" 20 "bindings" 21 "graphics" 22 "media" 23 "opengl" 24 "input" 25 "hci" 26 "org:erratique" 27] 28homepage: "https://erratique.ch/software/tsdl" 29doc: "https://erratique.ch/software/tsdl/doc/" 30bug-reports: "https://github.com/dbuenzli/tsdl/issues" 31depends: [ 32 "ocaml" {>= "4.08.0"} 33 "ocamlfind" {build} 34 "ocamlbuild" {build} 35 "topkg" {build & >= "1.0.3"} 36 "conf-sdl2" 37 "ctypes" {>= "0.21.1"} 38 "ctypes-foreign" {>= "0.21.1"} 39] 40available: os-distribution != "opensuse-leap" | os-version >= "16" 41build: ["ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{dev}%"] 42dev-repo: "git+https://erratique.ch/repos/tsdl.git" 43url { 44 src: "https://erratique.ch/software/tsdl/releases/tsdl-1.1.0.tbz" 45 checksum: 46 "sha512=f6d429ac5f7d1ea2411fb65f08e454fc5f515879c92e9031afb978dd0c8865739931a83a277fc3bf556e743a710ec8b530717f9e30e353660e1f0219c8293413" 47} 48x-maintenance-intent: ["(latest)"]