-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathopam
46 lines (42 loc) · 1.06 KB
/
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
43
44
45
46
opam-version: "2.0"
name: "bap-server"
version: "master"
maintainer: "Ivan Gotovchits <[email protected]>"
authors: "BAP Team"
homepage: "https://github.com/BinaryAnalysisPlatform/bap-server/"
bug-reports: "https://github.com/BinaryAnalysisPlatform/bap-server/issues"
dev-repo: "git://github.com/BinaryAnalysisPlatform/bap-server/"
license: "MIT"
build: [
["oasis" "setup"]
["ocaml" "setup.ml" "-configure" "--prefix" prefix]
["ocaml" "setup.ml" "-build"]
]
install: [
["ocaml" "setup.ml" "-install"]
]
remove: [
["rm" "-f" "%{bin}%/bap-server"]
]
depends: [
"ocaml" {>= "4.04.1"}
"core-lwt"
"regular"
"bap"
"cohttp" {>= "1.0.0" & < "2.0.0"}
"cohttp-lwt" {>= "1.0.0" & < "2.0.0"}
"cohttp-lwt-unix" {>= "1.0.0" & < "2.0.0"}
"core_kernel" {>= "v0.11" & < "v0.12"}
"ezjsonm" {= "0.5.0"}
"lwt" {>= "4.0.0" & < "5.0.0"}
"oasis" {build & >= "0.4.7"}
"re"
"uri" {>= "2.0.0"}
]
conflicts: [
"tls" {< "0.7.1"}
"nocrypto" {< "0.5.3"}
]
synopsis: "BAP RPC server"
description:
"Provides a small subset of BAP functionality via a JSON RPC server."