homebrew-core/Formula/ntl.rb

24 lines
585 B
Ruby
Raw Normal View History

2014-10-02 18:19:04 +00:00
require "formula"
class Ntl < Formula
2014-10-02 18:19:04 +00:00
homepage "http://www.shoup.net/ntl"
url "http://www.shoup.net/ntl/ntl-6.2.1.tar.gz"
sha1 "3b9ab3bedb0b2e9b5ee322d60745be5caf1c743f"
bottle do
cellar :any
sha1 "b55331990e2df310d694d5ae67dc3a55d6f18fd1" => :mavericks
sha1 "bd1f0789b9ebefb00eabd5d9de5f5dc2fe08bbc7" => :mountain_lion
sha1 "0f7793a186aca6d6ea229b678575a008d3e1911b" => :lion
end
def install
cd "src" do
system "./configure", "PREFIX=#{prefix}"
system "make"
2014-10-02 18:19:04 +00:00
system "make", "check"
system "make", "install"
end
end
end