diff options
| author | Denis Denisov | 2014-06-13 15:11:01 +0400 |
|---|---|---|
| committer | Mike McQuaid | 2014-06-13 16:10:39 +0100 |
| commit | c4de1e3f45293a012a957da3371e299a818bcd10 (patch) | |
| tree | 994e3655e95625f16d1541475cd56541e7cbe136 /Library | |
| parent | 4626cbfddd31e6ec73c556e23397600c364b29a7 (diff) | |
| download | homebrew-c4de1e3f45293a012a957da3371e299a818bcd10.tar.bz2 | |
libffi: Add --HEAD option
Closes #30116.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/libffi.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Library/Formula/libffi.rb b/Library/Formula/libffi.rb index f1e62d696..c0d168f77 100644 --- a/Library/Formula/libffi.rb +++ b/Library/Formula/libffi.rb @@ -13,11 +13,19 @@ class Libffi < Formula sha1 "c2ad5c7f63e06566494d92baa1e31c0c2190ea05" => :lion end + head do + url 'https://github.com/atgreen/libffi.git' + depends_on "autoconf" => :build + depends_on "automake" => :build + depends_on "libtool" => :build + end + keg_only :provided_by_osx, "Some formulae require a newer version of libffi." def install ENV.deparallelize # https://github.com/Homebrew/homebrew/pull/19267 ENV.universal_binary + system "./autogen.sh" if build.head? system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}" system "make install" |
