homebrew-core/Formula/libffi.rb
Stephen Bannasch bb91fc03c5 universal libffi to work on 10.6 with ffi rubygem
Installing the rubygem ffi in the stock Ruby 1.8.7
on MacOS X 10.6.x fails unless libffi is universal.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-08-20 13:01:47 -07:00

21 lines
570 B
Ruby

require 'formula'
class Libffi <Formula
url 'ftp://sourceware.org/pub/libffi/libffi-3.0.8.tar.gz'
homepage 'http://sourceware.org/libffi/'
sha1 'ce44d10c39d9a37479c8777e206cac0f36c48712'
keg_only :provided_by_osx
def patches
host = "http://trac.macports.org"
base = "export/57218/trunk/dports/devel/libffi/files"
{ :p0 => "#{host}/#{base}/patch-includedir.diff" }
end
def install
ENV.universal_binary
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end