aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libftdi.rb
blob: 2a7501957af0406fd6050849e0cca42ae71f5aaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'formula'

class Libftdi < Formula
  url "http://www.intra2net.com/en/developer/libftdi/download/libftdi-0.18.tar.gz"
  homepage 'http://www.intra2net.com/en/developer/libftdi'
  md5 '916f65fa68d154621fc0cf1f405f2726'

  depends_on 'boost'
  depends_on 'libusb-compat'

  def install
    mkdir 'libftdi-build'
    Dir.chdir 'libftdi-build' do
      system "../configure", "--prefix=#{prefix}"
      system "make"
      system "make install"
    end
  end
end