forked from ocaml/opam-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request ocaml#14564 from dbuenzli/opam-publish-fmt.0.8.7
Package fmt.0.8.7
- Loading branch information
Showing
1 changed file
with
44 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,44 @@ | ||
opam-version: "2.0" | ||
maintainer: "Daniel Bünzli <daniel.buenzl [email protected]>" | ||
authors: [ "The fmt programmers" ] | ||
homepage: "https://erratique.ch/software/fmt" | ||
doc: "https://erratique.ch/software/fmt" | ||
dev-repo: "git+https://erratique.ch/repos/fmt.git" | ||
bug-reports: "https://github.com/dbuenzli/fmt/issues" | ||
tags: [ "string" "format" "pretty-print" "org:erratique" ] | ||
license: "ISC" | ||
depends: [ | ||
"ocaml" {>= "4.05.0"} | ||
"ocamlfind" {build} | ||
"ocamlbuild" {build} | ||
"topkg" {build & >= "0.9.0"} | ||
# Can be removed once ocaml >= 4.07 | ||
"seq" | ||
"stdlib-shims" | ||
] | ||
depopts: [ "base-unix" "cmdliner" ] | ||
conflicts: [ "cmdliner" {< "0.9.8"} ] | ||
build: [[ | ||
"ocaml" "pkg/pkg.ml" "build" | ||
"--dev-pkg" "%{pinned}%" | ||
"--with-base-unix" "%{base-unix:installed}%" | ||
"--with-cmdliner" "%{cmdliner:installed}%" ]] | ||
|
||
synopsis: """OCaml Format pretty-printer combinators""" | ||
description: """\ | ||
|
||
Fmt exposes combinators to devise `Format` pretty-printing functions. | ||
|
||
Fmt depends only on the OCaml standard library. The optional `Fmt_tty` | ||
library that allows to setup formatters for terminal color output | ||
depends on the Unix library. The optional `Fmt_cli` library that | ||
provides command line support for Fmt depends on [`Cmdliner`][cmdliner]. | ||
|
||
Fmt is distributed under the ISC license. | ||
|
||
[cmdliner]: http://erratique.ch/software/cmdliner | ||
""" | ||
url { | ||
archive: "https://erratique.ch/software/fmt/releases/fmt-0.8.7.tbz" | ||
checksum: "c317aa285fe13732cd1f27674f974357" | ||
} |