aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMike McQuaid2014-10-02 11:19:04 -0700
committerMike McQuaid2014-10-02 11:19:14 -0700
commit59f098849be9f1ea6eb6b891e2700170891c4f67 (patch)
tree4deb964dce0a0d60b81f7bf6189b8d43029110f2 /Library/Formula
parentcb8cd87d7ef3c9f0fe5f53732447a77f8e8b9df5 (diff)
downloadhomebrew-59f098849be9f1ea6eb6b891e2700170891c4f67.tar.bz2
ntl: general cleanup.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/ntl.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/ntl.rb b/Library/Formula/ntl.rb
index 983b2b225..fc4e4812e 100644
--- a/Library/Formula/ntl.rb
+++ b/Library/Formula/ntl.rb
@@ -1,9 +1,9 @@
-require 'formula'
+require "formula"
class Ntl < Formula
- homepage 'http://www.shoup.net/ntl'
- url 'http://www.shoup.net/ntl/ntl-6.2.1.tar.gz'
- sha1 '3b9ab3bedb0b2e9b5ee322d60745be5caf1c743f'
+ homepage "http://www.shoup.net/ntl"
+ url "http://www.shoup.net/ntl/ntl-6.2.1.tar.gz"
+ sha1 "3b9ab3bedb0b2e9b5ee322d60745be5caf1c743f"
bottle do
cellar :any
@@ -16,8 +16,8 @@ class Ntl < Formula
cd "src" do
system "./configure", "PREFIX=#{prefix}"
system "make"
- system "make check"
- system "make install"
+ system "make", "check"
+ system "make", "install"
end
end
end