diff options
| author | Jack Nagel | 2013-01-26 11:57:14 -0600 |
|---|---|---|
| committer | Jack Nagel | 2013-01-26 12:29:40 -0600 |
| commit | 2cff3754fb99a2f619e6eb07c9ec0c2571c19504 (patch) | |
| tree | eb6e90b26a21f927e768031b59fd37cbd005e111 | |
| parent | 37372fca3ebf2e5617ec8791018723c44a58a003 (diff) | |
| download | homebrew-2cff3754fb99a2f619e6eb07c9ec0c2571c19504.tar.bz2 | |
libgpg-error: make universal optional
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
| -rw-r--r-- | Library/Formula/libgpg-error.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Formula/libgpg-error.rb b/Library/Formula/libgpg-error.rb index a3bc7c25c..07e752f04 100644 --- a/Library/Formula/libgpg-error.rb +++ b/Library/Formula/libgpg-error.rb @@ -5,8 +5,10 @@ class LibgpgError < Formula url 'ftp://ftp.gnupg.org/gcrypt/libgpg-error/libgpg-error-1.10.tar.bz2' sha1 '95b324359627fbcb762487ab6091afbe59823b29' + option :universal + def install - ENV.universal_binary + ENV.universal_binary if build.universal? system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" system "make install" |
