2009-12-24 10:54:58 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class LibusbCompat < Formula
|
2010-04-27 18:52:57 +00:00
|
|
|
homepage 'http://www.libusb.org/'
|
2013-07-13 12:46:47 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/libusb/libusb-compat-0.1/libusb-compat-0.1.5/libusb-compat-0.1.5.tar.bz2'
|
|
|
|
sha256 '404ef4b6b324be79ac1bfb3d839eac860fbc929e6acb1ef88793a6ea328bc55a'
|
2009-12-24 10:54:58 +00:00
|
|
|
|
2013-06-22 12:32:32 +00:00
|
|
|
option :universal
|
|
|
|
|
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
|
2013-06-22 12:32:32 +00:00
|
|
|
ENV.universal_binary if build.universal?
|
2009-12-24 10:54:58 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|