this repo has no description
1opam-version: "2.0"
2maintainer: "Frederic Bour <frederic.bour@lakaban.net>"
3authors: "Frederic Bour <frederic.bour@lakaban.net>"
4homepage: "https://github.com/let-def/stb_image"
5bug-reports: "https://github.com/let-def/stb_image"
6license: "CC0-1.0+"
7dev-repo: "git+https://github.com/let-def/stb_image.git"
8build: [make]
9install: [make "install"]
10remove: ["ocamlfind" "remove" "stb_image"]
11depends: [
12 "ocaml" {!= "4.01.0"}
13 "ocamlfind" {build}
14 "result"
15]
16synopsis: "OCaml bindings to stb_image, a public domain image loader"
17description: """
18Stb_image is an OCaml binding to stb_image from Sean Barrett, [Nothings](http://nothings.org/):
19
20 stb_image.h: public domain C image loading library
21
22The OCaml binding is released under CC-0 license. It has no dependency beside working OCaml and C compilers (stb_image is self-contained)."""
23flags: light-uninstall
24url {
25 src: "https://github.com/let-def/stb_image/archive/v0.4.tar.gz"
26 checksum: [
27 "sha256=dcf9b36cb60b7aeeb880fc9c0c29acd76ac2de5e98023d80df7efd06aa2dfa98"
28 "md5=e78c65923035cf352b73010278b4bf74"
29 ]
30}