Add --universal option to Neon

master
Adam Vandenberg 2010-05-10 20:37:12 -07:00
parent 9e703502fe
commit 0188c9e238
1 changed files with 8 additions and 0 deletions

View File

@ -9,7 +9,15 @@ class Neon <Formula
:provided_by_osx
end
def options
[
['--universal', 'Build as a Universal Intel binary.']
]
end
def install
ENV.universal_binary if ARGV.include? '--universal'
system "./configure", "--prefix=#{prefix}",
"--disable-debug",
"--enable-shared",