require "formula" class Libusb < Formula homepage "http://libusb.info" url "https://downloads.sourceforge.net/project/libusb/libusb-1.0/libusb-1.0.19/libusb-1.0.19.tar.bz2" sha256 "6c502c816002f90d4f76050a6429c3a7e0d84204222cbff2dce95dd773ba6840" bottle do cellar :any revision 1 sha1 "8e65bc4484e61141abc1ec0e16617713e4239ce8" => :yosemite sha1 "34ed99c7bd26ba888e0884be004ae93e567db595" => :mavericks sha1 "4558475bbe84d5ccdfc8ce342926715519d73f9b" => :mountain_lion end head do url "https://github.com/libusb/libusb.git" depends_on "autoconf" => :build depends_on "automake" => :build depends_on "libtool" => :build end option :universal option "no-runtime-logging", "Build without runtime logging functionality" option "with-default-log-level-debug", "Build with default runtime log level of debug (instead of none)" def install ENV.universal_binary if build.universal? args = %W[--disable-dependency-tracking --prefix=#{prefix}] args << "--disable-log" if build.include? "no-runtime-logging" args << "--enable-debug-log" if build.with? "default-log-level-debug" system "./autogen.sh" if build.head? system "./configure", *args system "make install" end end