diff options
| author | Adam Vandenberg | 2011-06-05 08:08:57 -0700 | 
|---|---|---|
| committer | Adam Vandenberg | 2011-06-06 10:21:37 -0700 | 
| commit | 13bd2447f59d9cf224840b40bae436e8ea584e0d (patch) | |
| tree | 9ace9816c4de7aab2d9b19196db558fba95e1397 /Library/Formula/libidl.rb | |
| parent | 1a47880063de871a26538aaf4c7beec60f8b51b7 (diff) | |
| download | homebrew-13bd2447f59d9cf224840b40bae436e8ea584e0d.tar.bz2 | |
libidl: universal binary
Diffstat (limited to 'Library/Formula/libidl.rb')
| -rw-r--r-- | Library/Formula/libidl.rb | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/Library/Formula/libidl.rb b/Library/Formula/libidl.rb index 19ead2618..e53a966e4 100644 --- a/Library/Formula/libidl.rb +++ b/Library/Formula/libidl.rb @@ -9,7 +9,12 @@ class Libidl < Formula    depends_on 'gettext'    depends_on 'glib' +  def options +    [['--universal', 'Build universal binaries.']] +  end +    def install +    ENV.universal_binary if ARGV.build_universal?      system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"      system "make install"    end | 
