diff options
| author | Mike McQuaid | 2014-09-09 14:37:41 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2014-09-09 14:37:41 +0100 |
| commit | 31261ea21d19dbfc74cbb6fe04789787aa1a58e9 (patch) | |
| tree | e4427cbb3c4c8cb119a08bda82fffa36ecc282c2 /Library/Formula/lrzip.rb | |
| parent | 9848d95c45efcbc8ea6ba93640ffb281bb477721 (diff) | |
| download | homebrew-31261ea21d19dbfc74cbb6fe04789787aa1a58e9.tar.bz2 | |
lrzip: general cleanup.
Diffstat (limited to 'Library/Formula/lrzip.rb')
| -rw-r--r-- | Library/Formula/lrzip.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/lrzip.rb b/Library/Formula/lrzip.rb index bc780b82b..03f8482f1 100644 --- a/Library/Formula/lrzip.rb +++ b/Library/Formula/lrzip.rb @@ -1,9 +1,9 @@ -require 'formula' +require "formula" class Lrzip < Formula - homepage 'http://lrzip.kolivas.org' - url 'http://ck.kolivas.org/apps/lrzip/lrzip-0.616.tar.bz2' - sha1 '374a021ff087ee93b2d5894fd16aa3aef26dfa8f' + homepage "http://lrzip.kolivas.org" + url "http://ck.kolivas.org/apps/lrzip/lrzip-0.616.tar.bz2" + sha1 "374a021ff087ee93b2d5894fd16aa3aef26dfa8f" bottle do cellar :any @@ -12,14 +12,14 @@ class Lrzip < Formula sha1 "c98d079acc3df1f3e2b1eabc51b7ac7e3f592109" => :lion end - depends_on 'pkg-config' => :build + depends_on "pkg-config" => :build depends_on "lzo" def install system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" system "make" - system "make install" + system "make", "install" end test do |
