2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-07 19:22:45 +00:00
|
|
|
|
|
|
|
class Libffi <Formula
|
|
|
|
@url='ftp://sourceware.org/pub/libffi/libffi-3.0.8.tar.gz'
|
2009-09-25 21:37:33 +00:00
|
|
|
@homepage='http://sourceware.org/libffi/'
|
2009-09-07 19:22:45 +00:00
|
|
|
@sha1='ce44d10c39d9a37479c8777e206cac0f36c48712'
|
|
|
|
|
|
|
|
def patches
|
|
|
|
host = "http://trac.macports.org"
|
|
|
|
base = "export/57218/trunk/dports/devel/libffi/files"
|
2009-09-16 16:08:32 +00:00
|
|
|
{ :p0 => "#{host}/#{base}/patch-includedir.diff" }
|
2009-09-07 19:22:45 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|