this repo has no description
1opam-version: "2.0"
2maintainer: "ygrek@autistici.org"
3homepage: "https://github.com/ygrek/ocaml-extlib"
4dev-repo: "git+https://github.com/ygrek/ocaml-extlib.git"
5bug-reports: "https://github.com/ygrek/ocaml-extlib/issues"
6doc: ["https://ygrek.org/p/extlib/doc/"]
7license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
8authors: [
9 "Nicolas Cannasse"
10 "Brian Hurt"
11 "Yamagata Yoriyuki"
12 "Markus Mottl"
13 "Jesse Guardiani"
14 "John Skaller"
15 "Bardur Arantsson"
16 "Janne Hellsten"
17 "Richard W.M. Jones"
18 "ygrek"
19 "Gabriel Scherer"
20 "Pietro Abate"
21]
22build: [
23 [make "minimal=1" "build"]
24 [make "minimal=1" "test"] {with-test}
25 [make "minimal=1" "doc"] {with-doc}
26]
27install: [ [make "minimal=1" "install"] ]
28depends: [
29 "ocaml" {< "5.0"}
30 "ocamlfind" {build}
31 "cppo" {build}
32 "base-bytes" {build}
33]
34synopsis:
35 "A complete yet small extension for OCaml standard library (reduced, recommended)"
36description: """
37The purpose of this library is to add new functions to OCaml standard library
38modules, to modify some functions in order to get better performances or
39safety (tail-recursive) and also to provide new modules which should be useful
40for day to day programming.
41
42Current goal is to maintain compatibility, new software is encouraged to not use extlib since stdlib
43is now seeing many additions and improvements which make many parts of extlib obsolete.
44For tail-recursion safety consider using other libraries e.g. containers.
45"""
46url {
47 src: "https://ygrek.org/p/release/ocaml-extlib/extlib-1.7.8.tar.gz"
48 checksum: [
49 "md5=7e0df072af4e2daa094e5936a661cb11"
50 "sha256=935ca46843af40dc33306d9cce66163d3733312bf444e969b5a8fa3f3024f85a"
51 "sha512=664a8366fb4eed685bd8f8907dbc9a8103bbf75ebb5d7635f6db890722e673107aa052bd09c276f5ed10dc3695220234c382d90d4f8c4e6b93ff68dd22e876e4"
52 ]
53 mirrors: "https://github.com/ygrek/ocaml-extlib/releases/download/1.7.8/extlib-1.7.8.tar.gz"
54}