2009-12-24 10:54:58 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class LibusbCompat < Formula
|
2009-12-24 10:54:58 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/libusb/libusb-compat-0.1/libusb-compat-0.1.3/libusb-compat-0.1.3.tar.bz2'
|
2010-04-27 18:52:57 +00:00
|
|
|
homepage 'http://www.libusb.org/'
|
2009-12-24 10:54:58 +00:00
|
|
|
md5 '570ac2ea085b80d1f74ddc7c6a93c0eb'
|
|
|
|
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2009-12-24 10:54:58 +00:00
|
|
|
depends_on 'libusb'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|