f929297c68
Closes Homebrew/homebrew#31402. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
16 lines
347 B
Ruby
16 lines
347 B
Ruby
require 'formula'
|
|
|
|
class Ntl < Formula
|
|
homepage 'http://www.shoup.net/ntl'
|
|
url 'http://www.shoup.net/ntl/ntl-6.1.0.tar.gz'
|
|
sha1 '91fa69e71ee964dc94c107eb762a97425776ac2c'
|
|
|
|
def install
|
|
cd "src" do
|
|
system "./configure", "PREFIX=#{prefix}"
|
|
system "make"
|
|
system "make check"
|
|
system "make install"
|
|
end
|
|
end
|
|
end
|