blob: 211d6c3d961789861d19bec54ad6442d8e3c887a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Ntl < Formula
homepage 'http://www.shoup.net/ntl'
url 'http://www.shoup.net/ntl/ntl-5.5.2.tar.gz'
sha1 'b45e3858f7f351afeb7fbb831b256befc4892b06'
def install
cd "src" do
system "./configure", "PREFIX=#{prefix}"
system "make"
system "make check"
system "make install"
end
end
end
|