summaryrefslogtreecommitdiff
path: root/opam
blob: 95df2755cccaad600c4fd6c792e95344c83443b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
opam-version: "2.0"
maintainer: "ygrek@autistici.org"
homepage: "https://github.com/ygrek/ocaml-extlib"
dev-repo: "git://github.com/ygrek/ocaml-extlib.git"
bug-reports: "https://github.com/ygrek/ocaml-extlib/issues"
doc: ["https://ygrek.org/p/extlib/doc/"]
license: "LGPL-2.1-only with OCaml-LGPL-linking-exception"
synopsis: "A complete yet small extension for OCaml standard library"
authors: [
  "Nicolas Cannasse"
  "Brian Hurt"
  "Yamagata Yoriyuki"
  "Markus Mottl"
  "Jesse Guardiani"
  "John Skaller"
  "Bardur Arantsson"
  "Janne Hellsten"
  "Richard W.M. Jones"
  "ygrek"
  "Gabriel Scherer"
  "Pietro Abate"
]
build: [
  [make "minimal=1" "build"]
  [make "minimal=1" "test"] {with-test}
  [make "minimal=1" "doc"] {with-doc}
]
install: [ [make "minimal=1" "install"] ]
depends: [
  "ocaml"
  "ocamlfind" {build}
  "cppo" {build}
  "base-bytes" {build}
]
description: """
The purpose of this library is to add new functions to OCaml standard library
modules, to modify some functions in order to get better performances or
safety (tail-recursive) and also to provide new modules which should be useful
for day to day programming."""