aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2013-08-07 09:46:36 -0700
committerAdam Vandenberg2013-08-07 09:46:36 -0700
commitda4e3e8f2c6038736dffe702f7b78b42cfe9d35b (patch)
tree63850e82182ba03e0659a0eb33269e5f2a7c3e52 /Library
parentcb04e3fe806d73aabb5432f7fc967a9521e3fe56 (diff)
downloadhomebrew-da4e3e8f2c6038736dffe702f7b78b42cfe9d35b.tar.bz2
czmq: style nits
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/czmq.rb10
1 files changed, 3 insertions, 7 deletions
diff --git a/Library/Formula/czmq.rb b/Library/Formula/czmq.rb
index f68d0e473..d4bbda89f 100644
--- a/Library/Formula/czmq.rb
+++ b/Library/Formula/czmq.rb
@@ -8,21 +8,17 @@ class Czmq < Formula
option :universal
- depends_on 'zeromq'
-
if build.head?
depends_on 'autoconf'
depends_on 'automake'
depends_on 'libtool'
end
+ depends_on 'zeromq'
+
def install
ENV.universal_binary if build.universal?
-
- if build.head?
- system "./autogen.sh"
- end
-
+ system "./autogen.sh" if build.head?
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"