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

class Libftdi0 < Formula
  homepage 'http://www.intra2net.com/en/developer/libftdi'
  url "http://www.intra2net.com/en/developer/libftdi/download/libftdi-0.20.tar.gz"
  sha1 '4bc6ce70c98a170ada303fbd00b8428d8a2c1aa2'

  depends_on 'libusb-compat'

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