-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jun Furuse
committed
Dec 9, 2023
1 parent
30b1b97
commit 8624405
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
opam-version: "2.0" | ||
synopsis: "Image processing library" | ||
description: | ||
"An image processing library, which provides loading and saving various image formats with an interface for the Caml graphics library. It has also an interface with the freetype library to draw texts using truetype fonts." | ||
maintainer: "Jun FURUSE <jun.furuse@gmail.com>" | ||
authors: "Jun FURUSE <jun.furuse@gmail.com>" | ||
license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" | ||
homepage: "https://gitlab.com/camlspotter/camlimages" | ||
bug-reports: "https://gitlab.com/camlspotter/camlimages/-/issues" | ||
depends: [ | ||
"ocaml" {>= "4.12.1"} | ||
"dune" {>= "3.2"} | ||
"base" {build} | ||
"stdio" {build} | ||
"cppo" {build} | ||
"dune-configurator" {build & >= "2.0.0"} | ||
"ocamlfind" {build} | ||
"odoc" {with-doc} | ||
] | ||
depopts: [ | ||
"lablgtk" | ||
"graphics" | ||
"conf-libpng" | ||
"conf-libjpeg" | ||
"conf-freetype" | ||
"conf-libgif" | ||
"conf-ghostscript" | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://gitlab.com/camlspotter/camlimages.git" | ||
url { | ||
src: | ||
"https://gitlab.com/camlspotter/camlimages/-/archive/5.0.5/camlimages-5.0.5.tar.gz" | ||
checksum: [ | ||
"md5=84929b30257aa8e493dc84303768f400" | ||
"sha512=b3774d2287e4a97082f0289766f5a79d3e75454a194d2d6400cee9cf926f7676d8eba4cb27221a98314461b7a81b4386b253f1d706a94447423394be89d2ed49" | ||
] | ||
} |