homebrew-core/Formula/libffi.rb
Tianyi Cui 444588a39c libffi: version 3.0.9 and other updates.
1. switch to a more stable mirror.
2. the patches are not needed any more.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-10-16 19:38:51 -07:00

15 lines
418 B
Ruby

require 'formula'
class Libffi <Formula
url 'http://mirrors.kernel.org/sources.redhat.com/libffi/libffi-3.0.9.tar.gz'
homepage 'http://sourceware.org/libffi/'
sha1 '56e41f87780e09d06d279690e53d4ea2c371ea88'
keg_only :provided_by_osx
def install
ENV.universal_binary
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end