aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/szip.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2013-01-27 19:10:59 -0800
committerAdam Vandenberg2013-01-28 21:40:00 -0800
commit1dc5a23930d1cce438caa3efc4d6b47bd140cddb (patch)
tree7ebae34eadd53642c36737df24ca7868ed6fc6b1 /Library/Formula/szip.rb
parent2b18b741113593338d90491597db298aa5322d43 (diff)
downloadhomebrew-1dc5a23930d1cce438caa3efc4d6b47bd140cddb.tar.bz2
szip: style nits
Diffstat (limited to 'Library/Formula/szip.rb')
-rw-r--r--Library/Formula/szip.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/Library/Formula/szip.rb b/Library/Formula/szip.rb
index 71eb954fe..beaec4623 100644
--- a/Library/Formula/szip.rb
+++ b/Library/Formula/szip.rb
@@ -1,15 +1,16 @@
require 'formula'
class Szip < Formula
- url 'http://www.hdfgroup.org/ftp/lib-external/szip/2.1/src/szip-2.1.tar.gz'
homepage 'http://www.hdfgroup.org/HDF5/release/obtain5.html#extlibs'
+ url 'http://www.hdfgroup.org/ftp/lib-external/szip/2.1/src/szip-2.1.tar.gz'
sha1 'd241c9acc26426a831765d660b683b853b83c131'
option :universal
def install
ENV.universal_binary if build.universal?
- system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
system "make install"
end
end