homebrew-core/Formula/libftdi.rb

20 lines
460 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Libftdi < Formula
homepage 'http://www.intra2net.com/en/developer/libftdi'
url "http://www.intra2net.com/en/developer/libftdi/download/libftdi-0.19.tar.gz"
md5 'e6e25f33b4327b1b7aa1156947da45f3'
depends_on 'boost'
depends_on 'libusb-compat'
def install
mkdir 'libftdi-build'
cd 'libftdi-build' do
system "../configure", "--prefix=#{prefix}"
system "make"
system "make install"
end
end
end