forked from BinaryAnalysisPlatform/bap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopam
More file actions
71 lines (67 loc) · 1.6 KB
/
opam
File metadata and controls
71 lines (67 loc) · 1.6 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
opam-version: "1.2"
name: "bap"
version: "master"
maintainer: "Ivan Gotovchits <ivg@ieee.org>"
authors: "BAP Team"
homepage: "https://github.com/BinaryAnalysisPlatform/bap/"
bug-reports: "https://github.com/BinaryAnalysisPlatform/bap/issues"
dev-repo: "git://github.com/BinaryAnalysisPlatform/bap/"
license: "MIT"
build: [
["./configure"
"--prefix=%{prefix}%"
"--with-cxx=`which clang++`"
"--enable-docs"
"--docdir=%{doc}%/bap"
"--mandir=%{man}%"]
[make]
[make "doc"]
]
install: [
[make "install"]
]
remove: [
["ocamlfind" "remove" "bap"]
["ocamlfind" "remove" "core_lwt"]
["rm" "-rf" bap:doc]
["rm" "-f" "%{prefix}%/share/bap/sigs.zip"]
["rm" "-f" "%{man}%/man1/bap-mc.1"]
["rm" "-f" "%{man}%/man1/bap-objdump.1"]
["rm" "-f" "%{man}%/man1/bap-byteweight.1"]
["rm" "-f" "%{bin}%/bap-mc"]
["rm" "-f" "%{bin}%/bap-objdump"]
["rm" "-f" "%{bin}%/bap-byteweight"]
["rm" "-f" "%{bin}%/bap-server"]
["rm" "-f" "%{bin}%/bapbuild"]
["rm" "-f" "%{bin}%/baptop"]
]
depends: [
"base-unix"
"bitstring"
"camlzip"
"cmdliner" {>= "0.9.6"}
"cohttp" {>= "0.15.0"}
"core_kernel" {>= "111.28.0"}
"ezjsonm" {>= "0.4.0"}
"faillib"
"fileutils"
"lwt"
"oasis" {build & >= "0.4.0"}
"ocamlgraph"
"ocurl"
"re"
"uri"
"utop"
"zarith"
]
depexts: [
[["ubuntu"] [
"libgmp-dev"
"libzip-dev"
"libcurl4-gnutls-dev"
"llvm-3.4-dev"
"time" "clang"
"llvm" "m4"
]]
]
available: [ocaml-version >= "4.01"]