2009-10-30 10:44:15 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Libusb < Formula
|
2010-05-06 22:45:32 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/libusb/libusb-1.0/libusb-1.0.8/libusb-1.0.8.tar.bz2'
|
2010-04-27 18:52:57 +00:00
|
|
|
homepage 'http://www.libusb.org/'
|
2010-05-06 22:45:32 +00:00
|
|
|
md5 '37d34e6eaa69a4b645a19ff4ca63ceef'
|
2009-10-30 10:44:15 +00:00
|
|
|
|
2011-01-02 11:28:46 +00:00
|
|
|
def options
|
|
|
|
[["--universal", "Build a universal binary."]]
|
|
|
|
end
|
|
|
|
|
2009-10-30 10:44:15 +00:00
|
|
|
def install
|
2011-01-02 11:28:46 +00:00
|
|
|
ENV.universal_binary if ARGV.include? "--universal"
|
2009-12-24 10:54:58 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
|
2009-10-30 10:44:15 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|