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/def-lkb/stb_image" 5bug-reports: "https://github.com/def-lkb/stb_image" 6license: "CC0-1.0+" 7dev-repo: "git+https://github.com/def-lkb/stb_image.git" 8build: [make] 9install: [make "install"] 10remove: ["ocamlfind" "remove" "stb_image"] 11depends: [ 12 "ocaml" {!= "4.01.0"} 13 "ocamlfind" {build} 14] 15synopsis: "OCaml bindings to stb_image, a public domain image loader" 16description: """ 17Stb_image is an OCaml binding to stb_image from Sean Barrett, [Nothings](http://nothings.org/): 18 19 stb_image.h: public domain C image loading library 20 21The OCaml binding is released under CC-0 license. It has no dependency beside working OCaml and C compilers (stb_image is self-contained).""" 22flags: light-uninstall 23url { 24 src: "https://github.com/def-lkb/stb_image/archive/v0.1.tar.gz" 25 checksum: [ 26 "sha256=35956b6373e7bac94b0f0a8d7f70da0ea751e096e1fc3dd8b439226cd8bb04cd" 27 "md5=7105586140b4c0dfbc346429349ce1ec" 28 ] 29}