444588a39c
1. switch to a more stable mirror. 2. the patches are not needed any more. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
15 lines
418 B
Ruby
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
|