Commit 41c7784b authored by Damian Montero's avatar Damian Montero Committed by GitHub

Merge pull request #299 from cstrouse/add-libffi

Add package for libffi
parents b6fd14a5 85c32069
require 'package'
class Libffi < Package
version '3.0.13'
source_url 'ftp://sourceware.org/pub/libffi/libffi-3.0.13.tar.gz'
source_sha1 'f5230890dc0be42fb5c58fbf793da253155de106'
depends_on 'autoconf'
depends_on 'automake'
def self.build
system "./configure", "--disable-debug", "--disable-dependency-tracking"
end
def self.install
system "make", "install"
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment