-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24090 from antoinemine/opam-publish-apron.v0.9.14…
…-beta.2 Package apron.v0.9.14~beta.2
- Loading branch information
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
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} | ||
"--no-ocaml-plugins" {os = "freebsd"} | ||
"--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.""" | ||
url { | ||
src: | ||
"https://github.com/antoinemine/apron/archive/refs/tags/v0.9.14-beta.2.tar.gz" | ||
checksum: [ | ||
"md5=b7f9ea6838057458c878f46ea4c9dede" | ||
"sha512=bc2cbcf601c0d6deb75028ef7da4b485350665a09c4f9ed9146107aeed65edb055207a02a52bc279c2b506e9c5922371035fb00d0ae2cbfec3a9a760ecebf1bd" | ||
] | ||
} |