homebrew-core/Formula/libftdi.rb

20 lines
494 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/libftdi1-1.0.tar.bz2'
sha1 '5be76cfd7cd36c5291054638f7caf4137303386f'
depends_on 'cmake' => :build
depends_on 'pkg-config' => :build
depends_on 'libusb'
depends_on 'boost' => :optional
def install
2012-02-22 04:48:36 +00:00
mkdir 'libftdi-build' do
system "cmake", "..", *std_cmake_args
system "make install"
end
end
end