mirror of
https://github.com/celisej567/cool-source-archive.git
synced 2026-09-09 20:09:18 +03:00
28 lines
898 B
Plaintext
28 lines
898 B
Plaintext
opam-version: "2.0"
|
|
name: "stb_image"
|
|
version: "0.5"
|
|
maintainer: "Frederic Bour <frederic.bour@lakaban.net>"
|
|
authors: "Frederic Bour <frederic.bour@lakaban.net>"
|
|
homepage: "https://github.com/let-def/stb_image"
|
|
bug-reports: "https://github.com/let-def/stb_image"
|
|
license: "CC0"
|
|
dev-repo: "git+https://github.com/let-def/stb_image.git"
|
|
build: [
|
|
[make]
|
|
]
|
|
install: [make "install"]
|
|
remove: ["ocamlfind" "remove" "stb_image"]
|
|
depends: [
|
|
"ocaml" {!= "4.01.0"}
|
|
"ocamlfind" {build}
|
|
"result"
|
|
]
|
|
flags: light-uninstall
|
|
synopsis: "OCaml bindings to stb_image, a public domain image loader"
|
|
description: """
|
|
Stb_image is an OCaml binding to stb_image from Sean Barrett, [Nothings](http://nothings.org/):
|
|
|
|
stb_image.h: public domain C image loading library
|
|
|
|
The OCaml binding is released under CC-0 license. It has no dependency beside working OCaml and C compilers (stb_image is self-contained)."""
|