Skip to content

Commit ffa13bd

Browse files
authored
Merge pull request #26174 from antoinemine/opam-publish-apron.v0.9.15
Package apron.v0.9.15
2 parents 0553099 + d2d3159 commit ffa13bd

File tree

1 file changed

+51
-0
lines changed
  • packages/apron/apron.v0.9.15

1 file changed

+51
-0
lines changed

packages/apron/apron.v0.9.15/opam

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
opam-version: "2.0"
2+
synopsis: "APRON numerical abstract domain library"
3+
authors: [
4+
"Bertrand Jeannet"
5+
"Antoine Miné"
6+
"https://github.com/antoinemine/apron/graphs/contributors"
7+
]
8+
license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
9+
homepage: "https://antoinemine.github.io/Apron/doc/"
10+
maintainer: "Nicolas Berthier <[email protected]>"
11+
dev-repo: "git+https://github.com/antoinemine/apron.git"
12+
bug-reports: "https://github.com/antoinemine/apron/issues"
13+
build: [
14+
[
15+
"sh"
16+
"./configure"
17+
"--prefix"
18+
"%{share}%/apron"
19+
"--no-ppl" {!conf-ppl:installed}
20+
"--no-ocaml-plugins" {os = "freebsd"}
21+
"--absolute-dylibs" {os = "macos"}
22+
"--ext-dll" {os = "win32"} "dll" {os = "win32"}
23+
"--debug"
24+
"--no-strip"
25+
]
26+
[make "-j%{jobs}%"]
27+
]
28+
install: [
29+
[make "install"]
30+
]
31+
depends: [
32+
"ocaml"
33+
"ocamlfind" {build}
34+
"camlidl"
35+
"mlgmpidl"
36+
"ocamlbuild" {build}
37+
"conf-perl"
38+
]
39+
depopts: [
40+
"conf-ppl"
41+
]
42+
description:"""
43+
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."""
44+
url {
45+
src:
46+
"https://github.com/antoinemine/apron/archive/refs/tags/v0.9.15.tar.gz"
47+
checksum: [
48+
"md5=3cbe1d032e879ed916561f246c8aae72"
49+
"sha512=c96dc5904c4126f84b01ed0d5a8f38e2c4b9653fa714e3c77fc305d7b8cf8e239eb9a6838dcdc015b2722cbf38f378e5d07122d4c7c5a62f27137992f35a665d"
50+
]
51+
}

0 commit comments

Comments
 (0)