-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathapron.opam
More file actions
42 lines (42 loc) · 1.35 KB
/
apron.opam
File metadata and controls
42 lines (42 loc) · 1.35 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
opam-version: "2.0"
synopsis: "APRON numerical abstract domain library"
authors: [
"Bertrand Jeannet"
"Antoine Miné"
"https://github.com/antoinemine/apron/graphs/contributors"
]
license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
homepage: "https://antoinemine.github.io/Apron/doc/"
maintainer: "Nicolas Berthier <m@nberth.space>"
dev-repo: "git+https://github.com/antoinemine/apron.git"
bug-reports: "https://github.com/antoinemine/apron/issues"
build: [
[
"sh"
"./configure"
"--prefix"
"%{share}%/apron"
"--no-ppl" {!conf-ppl:installed}
"--absolute-dylibs" {os = "macos"}
"--ext-dll" {os = "win32"} "dll" {os = "win32"}
"--debug"
"--no-strip"
]
[make "-j%{jobs}%"]
]
install: [
[make "install"]
]
depends: [
"ocaml"
"ocamlfind" {build}
"camlidl"
"mlgmpidl"
"ocamlbuild" {build}
"conf-perl"
]
depopts: [
"conf-ppl"
]
description:"""
Apron is a library to represent properties of numeric variables, such as variable bounds or linear relations between variables, and to manipulate these properties through semantic operations, such as variable assignments, tests, conjunctions, entailment. Apron is intended to be used in static program analyzers, in order to infer invariants of numeric variables, i.e., properties that hold for all executions of a program. It is based on the theory of Abstract Interpretation."""