You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.3 KiB
38 lines
1.3 KiB
opam-version: "2.0" |
|
maintainer: "opensource@janestreet.com" |
|
authors: ["Jane Street Group, LLC <opensource@janestreet.com>"] |
|
homepage: "https://github.com/janestreet/base" |
|
bug-reports: "https://github.com/janestreet/base/issues" |
|
dev-repo: "git+https://github.com/janestreet/base.git" |
|
doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/base/index.html" |
|
license: "MIT" |
|
build: [ |
|
["dune" "build" "-p" name "-j" jobs] |
|
] |
|
depends: [ |
|
"ocaml" {>= "4.04.2" & < "4.08.0"} |
|
"sexplib0" {>= "v0.12" & < "v0.13"} |
|
"dune" {build & >= "1.5.1"} |
|
] |
|
depopts: [ |
|
"base-native-int63" |
|
] |
|
synopsis: "Full standard library replacement for OCaml" |
|
description: " |
|
Full standard library replacement for OCaml |
|
|
|
Base is a complete and portable alternative to the OCaml standard |
|
library. It provides all standard functionalities one would expect |
|
from a language standard library. It uses consistent conventions |
|
across all of its module. |
|
|
|
Base aims to be usable in any context. As a result system dependent |
|
features such as I/O are not offered by Base. They are instead |
|
provided by companion libraries such as stdio: |
|
|
|
https://github.com/janestreet/stdio |
|
" |
|
url { |
|
src: "https://github.com/janestreet/base/archive/v0.12.1.tar.gz" |
|
checksum: "md5=8df12fc6f12669ad6c702673ec84214c" |
|
}
|
|
|