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 5SDL C 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]: http://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.14.0"} 38 "ctypes-foreign" 39] 40available: os-distribution != "opensuse-leap" | os-version >= "16" 41x-ci-accept-failures: [ 42 "ubuntu-18.04" 43 "debian-10" 44 "oraclelinux-8" # sys package "SDL2-devel" not available 45] 46build: ["ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{dev}%"] 47dev-repo: "git+https://erratique.ch/repos/tsdl.git" 48url { 49 src: "https://erratique.ch/software/tsdl/releases/tsdl-1.0.0.tbz" 50 checksum: 51 "sha512=70ba93a07d8add11d29cf94ce173c022a52a7d57af7b9dad3abdae7fde6314d4690d3aacc8f75e598b6af2e692568399638813664db0331e0a898bdc14bfe670" 52}