File tree Expand file tree Collapse file tree 2 files changed +25
-0
lines changed
bap-flatten/bap-flatten.master Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ depends: [
28
28
"bap-disassemble" {= "master"}
29
29
"bap-dump-symbols" {= "master"}
30
30
"bap-elementary" {= "master"}
31
+ "bap-flatten" {= "master"}
31
32
"bap-frontend" {= "master"}
32
33
"bap-frontc" {= "master"}
33
34
"bap-glibc-runtime" {= "master"}
Original file line number Diff line number Diff line change
1
+ opam-version: "2.0"
2
+ name: "bap-flatten"
3
+ version: "master"
4
+ maintainer: "Ivan Gotovchits <ivg@ieee.org>"
5
+ authors: "BAP Team"
6
+ homepage: "https://github.com/BinaryAnalysisPlatform/bap/"
7
+ bug-reports: "https://github.com/BinaryAnalysisPlatform/bap/issues"
8
+ dev-repo: "git://github.com/BinaryAnalysisPlatform/bap/"
9
+ license: "MIT"
10
+ build: [
11
+ ["./configure" "--prefix=%{prefix}%" "--enable-flatten"]
12
+ [make]
13
+ ]
14
+ install: [[make "install"]]
15
+ remove: [["ocamlfind" "remove" "bap-plugin-flatten"]
16
+ ["bapbundle" "remove" "flatten.plugin"]]
17
+ depends: [
18
+ "ocaml" {>= "4.08.0" }
19
+ "bap-std" {= "master"}
20
+ ]
21
+ synopsis: "A BAP plugin, that translates a program into the flatten form"
22
+ url {
23
+ src: "git+https://github.com/BinaryAnalysisPlatform/bap#master"
24
+ }
You can’t perform that action at this time.
0 commit comments