aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ntl.rb
blob: 61b6d353bf351cc475aeaf11e075db85c0c772b6 (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-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