homebrew-core/Formula/libusb.rb

33 lines
803 B
Ruby
Raw Normal View History

2009-10-30 10:44:15 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Libusb < Formula
2010-04-27 18:52:57 +00:00
homepage 'http://www.libusb.org/'
url 'http://downloads.sourceforge.net/project/libusb/libusb-1.0/libusb-1.0.9/libusb-1.0.9.tar.bz2'
sha256 'e920eedc2d06b09606611c99ec7304413c6784cba6e33928e78243d323195f9b'
2013-09-22 01:47:21 +00:00
head do
url 'git://git.libusb.org/libusb.git'
2009-10-30 10:44:15 +00:00
2013-11-13 17:01:29 +00:00
depends_on :autoconf
2012-07-07 18:08:22 +00:00
depends_on :automake
depends_on :libtool
end
option :universal
2013-09-22 01:47:21 +00:00
conflicts_with 'libusbx',
:because => 'both provide libusb compatible libraries'
2009-10-30 10:44:15 +00:00
def install
ENV.universal_binary if build.universal?
2013-03-10 04:18:18 +00:00
if build.head?
inreplace "configure.ac", "AM_CONFIG_HEADER", "AC_CONFIG_HEADERS"
system "./autogen.sh"
end
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
2009-10-30 10:44:15 +00:00
system "make install"
end
end