-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathopam
35 lines (32 loc) · 899 Bytes
/
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
opam-version: "2.0"
name: "core-lwt"
version: "master"
maintainer: "Ivan Gotovchits <[email protected]>"
authors: "BAP Team"
homepage: "https://github.com/BinaryAnalysisPlatform/core-lwt/"
bug-reports: "https://github.com/BinaryAnalysisPlatform/core-lwt/issues"
dev-repo: "git://github.com/BinaryAnalysisPlatform/core-lwt/"
license: "MIT"
build: [
["oasis" "setup"]
["ocaml" "setup.ml" "-configure" "--prefix" prefix]
["ocaml" "setup.ml" "-build"]
]
install: [
["ocaml" "setup.ml" "-install"]
]
remove: [
["ocamlfind" "remove" "core_lwt"]
]
depends: [
"ocaml" {>= "4.04.1"}
"oasis" {build & >= "0.4.0"}
"base-unix"
"base-threads"
"core_kernel" {>= "v0.11" & < "v0.12"}
"lwt" { >= "4.0.0" & < "5.0.0"}
]
synopsis: "Lwt library wrapper in the Janestreet core style"
description: """
Provides an interface to Lwt library that follows the Janestreet
coding standards."""