homebrew-core/Formula/ntl.rb
2015-12-24 18:32:12 +01:00

27 lines
825 B
Ruby

class Ntl < Formula
desc "C++ number theory library"
homepage "http://www.shoup.net/ntl"
url "http://www.shoup.net/ntl/ntl-9.6.2.tar.gz"
sha256 "804c11f6ee8621e492e481a447faa836d165f77d4c84bd575417a5dcb200c6e1"
bottle do
cellar :any_skip_relocation
sha256 "55a64d1bd9ae612707e1a91d00099246d670296421d6e22fb926046e1bc0b0f7" => :el_capitan
sha256 "223b2f97a78cea6fa2c85728159058b83943c75aea30c7c7a289b49c90579919" => :yosemite
sha256 "b229f7cf772ec9ab10fd4abb641e914b3477848dc6be8e762d8ef8757367943b" => :mavericks
end
depends_on "gmp" => :optional
def install
args = ["PREFIX=#{prefix}"]
args << "NTL_GMP_LIP=on" if build.with? "gmp"
cd "src" do
system "./configure", *args
system "make"
system "make", "check"
system "make", "install"
end
end
end