-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathextlib.opam
42 lines (41 loc) · 1.33 KB
/
extlib.opam
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
40
41
42
opam-version: "2.0"
maintainer: "[email protected]"
homepage: "https://github.com/ygrek/ocaml-extlib"
dev-repo: "git+https://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"
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"
]
depends: [
"dune" {>= "1.0"}
"ocaml" {>= "4.02"}
"cppo" {build & >= "1.0.1"}
]
synopsis:
"A complete yet small extension for OCaml standard library"
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.
Current goal is to maintain compatibility, new software is encouraged to not use extlib since stdlib
is now seeing many additions and improvements which make many parts of extlib obsolete.
For tail-recursion safety consider using other libraries e.g. containers.
"""
build: [
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]