homebrew-core/Formula/fplll.rb

55 lines
1.9 KiB
Ruby

class Fplll < Formula
desc "Lattice algorithms using floating-point arithmetic"
homepage "https://github.com/fplll/fplll"
url "https://github.com/fplll/fplll/releases/download/5.3.3/fplll-5.3.3.tar.gz"
sha256 "5e7c46c30623795feeac19cf607583b7c82b0490ceb91498f0f712789be20ccd"
license "LGPL-2.1"
bottle do
sha256 "a85bb8549f59b85f87c38062a95b275e47d7dd280c3629bd654fbec6c9add006" => :big_sur
sha256 "9201144fd0ef7be11fd0f2ee3f860fc62efa4202c46be0f47540198b11f8202a" => :catalina
sha256 "099b4cc18fe92f4a19d0ba8113190524bd24814dc967addb6c149aca32ec90c7" => :mojave
sha256 "6f73bbf1c544b88e525c1fbd17594d4a77c5dc10b283d5308b6f816fcac9cfc9" => :high_sierra
end
depends_on "automake" => :build
depends_on "pkg-config" => :test
depends_on "gmp"
depends_on "mpfr"
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make", "install"
end
test do
(testpath/"m1.fplll").write("[[10 11][11 12]]")
assert_equal "[[0 1 ]\n[1 0 ]\n]\n", `#{bin/"fplll"} m1.fplll`
(testpath/"m2.fplll").write("[[17 42 4][50 75 108][11 47 33]][100 101 102]")
assert_equal "[107 88 96]\n", `#{bin/"fplll"} -a cvp m2.fplll`
(testpath/"test.cpp").write <<~EOS
#include <fplll.h>
#include <vector>
#include <stdio.h>
int main(int c, char **v) {
ZZ_mat<mpz_t> b;
std::vector<Z_NR<mpz_t>> sol_coord;
if (c > 1) { // just a compile test
shortest_vector(b, sol_coord);
}
return 0;
}
EOS
system "pkg-config", "fplll", "--cflags"
system "pkg-config", "fplll", "--libs"
pkg_config_flags = `pkg-config --cflags --libs gmp mpfr fplll`.chomp.split
system ENV.cxx, "-std=c++11", "test.cpp", *pkg_config_flags, "-o", "test"
system "./test"
end
end