aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/exiv2.rb
diff options
context:
space:
mode:
authorandrew morton2013-03-24 22:56:14 -0700
committerAdam Vandenberg2013-03-25 17:52:24 -0700
commita790c2e335f710ed94d07e8c5d03a4e570879ace (patch)
tree815ba6948a2389fe677c25727942cb53ad356fa6 /Library/Formula/exiv2.rb
parent571f4ad0acb2b3c1a29d32640d77941402f1de68 (diff)
downloadhomebrew-a790c2e335f710ed94d07e8c5d03a4e570879ace.tar.bz2
exiv2 - add universal build option
Closes #18713. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/exiv2.rb')
-rw-r--r--Library/Formula/exiv2.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/Library/Formula/exiv2.rb b/Library/Formula/exiv2.rb
index 6c4c23015..d5375f9e1 100644
--- a/Library/Formula/exiv2.rb
+++ b/Library/Formula/exiv2.rb
@@ -5,7 +5,10 @@ class Exiv2 < Formula
url 'http://www.exiv2.org/exiv2-0.23.tar.gz'
sha1 '5f342bf642477526f41add11d6ee7787cdcd639f'
+ option :universal
+
def install
+ ENV.universal_binary if build.universal?
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install"
end