forked from ropas/sparrow
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathopam
35 lines (33 loc) · 870 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: "sparrow"
version: "0.2"
synopsis: "A static analyzer for C programs"
maintainer: "Programming Research Laboratory (ROPAS), Seoul National University"
authors: "Programming Research Laboratory (ROPAS), Seoul National University"
homepage: "https://github.com/ropas/sparrow"
bug-reports: "https://github.com/ropas/sparrow/issues"
license: "BSD"
dev-repo: "git://github.com/ropas/sparrow.git"
build: [
["./configure" "--prefix=%{prefix}%"]
[make]
]
install:[[make "install"]]
remove: [
["./configure" "--prefix=%{prefix}%"]
[make "uninstall"]
]
depends: [
"ocaml" {>="4.08.0"}
"ocamlfind" {build}
"batteries" {>= "2.3.1"}
"cil" {>= "1.7.3"}
"ocamlgraph" {>= "1.8.7"}
"apron" {>= "0.9.10"}
"yojson" {>= "1.2.3"}
"lymp" {>= "0.1.3"}
"ppx_compare"
"ppx_deriving"
"clangml" {>= "4.1.0"}
"ocamlformat" {= "0.13.0"}
]