aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/libffi.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/libffi.rb b/Library/Formula/libffi.rb
new file mode 100644
index 000000000..8f37656e5
--- /dev/null
+++ b/Library/Formula/libffi.rb
@@ -0,0 +1,18 @@
+require 'brewkit'
+
+class Libffi <Formula
+ @url='ftp://sourceware.org/pub/libffi/libffi-3.0.8.tar.gz'
+ @homepage='http://sources.redhat.com/libffi/'
+ @sha1='ce44d10c39d9a37479c8777e206cac0f36c48712'
+
+ def patches
+ host = "http://trac.macports.org"
+ base = "export/57218/trunk/dports/devel/libffi/files"
+ ["#{host}/#{base}/patch-includedir.diff"]
+ end
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "make install"
+ end
+end