46 lines
1.6 KiB
Ruby
46 lines
1.6 KiB
Ruby
class Ppl < Formula
|
|
desc "Parma Polyhedra Library: numerical abstractions for analysis, verification"
|
|
homepage "https://bugseng.com/ppl"
|
|
url "https://deb.debian.org/debian/pool/main/p/ppl/ppl_1.2.orig.tar.xz"
|
|
sha256 "691f0d5a4fb0e206f4e132fc9132c71d6e33cdda168470d40ac3cf62340e9a60"
|
|
|
|
bottle do
|
|
rebuild 1
|
|
sha256 "dd7a6ceafb1719f8aa5968cc4b05f18e1fe1ec37256db061776fc3afb2280e6a" => :catalina
|
|
sha256 "59aa81dbfdc59de055e528724282fb0a1f7c627fc4bbc2f6b2d026e0c623db6c" => :mojave
|
|
sha256 "c6ff41541033e2c27648dff1c336aa0d4548f80fb355569f1e6677991ae6436f" => :high_sierra
|
|
sha256 "f9aef2f3cfb6bfd0732b544e836baf59f279efc9830531f104509b11d8964b0d" => :sierra
|
|
end
|
|
|
|
depends_on "gmp"
|
|
|
|
# Fix compilation with Xcode 10
|
|
# Upstream commit, remove for next version
|
|
patch do
|
|
url "http://www.cs.unipr.it/git/gitweb.cgi?p=ppl/ppl.git;a=commitdiff_plain;h=c39f6a07b51f89e365b05ba4147aa2aa448febd7"
|
|
sha256 "6786f432784b74b81805b1d97e97cd1cc9f68653077681bb4f531466cbf8dc99"
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--disable-silent-rules",
|
|
"--with-gmp=#{Formula["gmp"].opt_prefix}",
|
|
"--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.c").write <<~EOS
|
|
#include <ppl_c.h>
|
|
#ifndef PPL_VERSION_MAJOR
|
|
#error "No PPL header"
|
|
#endif
|
|
int main() {
|
|
ppl_initialize();
|
|
return ppl_finalize();
|
|
}
|
|
EOS
|
|
system ENV.cc, "test.c", "-L#{lib}", "-lppl_c", "-lppl", "-o", "test"
|
|
system "./test"
|
|
end
|
|
end
|