opam-version: "2.0"
synopsis: "Interface to the SDL2_image library"
license: "restrictionless Zlib"
authors: [
  "Florent Monnier"
  "David Cadé"
  "Piotr Mardziel"
]
maintainer: "https://github.com/fccm/"
homepage: "https://github.com/fccm/OCamlSDL2_Image"
bug-reports: "https://github.com/fccm/OCamlSDL2_Image/issues"
dev-repo: "git+https://github.com/fccm/OCamlSDL2_Image.git"
doc: "https://www.libsdl.org/projects/SDL_image/docs/SDL_image.html"

tags: [ "bindings" "graphics" "image" "loader" "multimedia" "cross-platform" ]

description: """
An OCaml interface to the SDL2_image library.

SDL2_image is an image loading library that is used with the SDL2 library,
and almost as portable.
It allows a programmer to use multiple image formats without having to code
all the loading and conversion algorithms themselves. 

SDL2_image homepage:
https://www.libsdl.org/projects/SDL_image/

This version of the bindings is known to work with SDL2_image version
2.0.5
"""
depends: [
  "ocaml"
  "ocamlsdl2"
  "ocamlfind" {build}
  "conf-sdl2-image"
]
build: [
  [make "-C" "src"]
]
install: [
  [make "-C" "src" "install"]
]
url {
  src: "https://github.com/fccm/OCamlSDL2_Image/archive/v0.01.tar.gz"
  checksum: [
    "md5=9df501e7cf98c5b94d4e3325b49bf907"
    "sha256=301b77ba0f413f4a57b5d7470861e29e80bf2cf1fedaf9ce1cd085a6c6c2309e"
  ]
}
