blob: 49a0ce282e8f3df74b241866b8b413b1be6830ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
require 'formula'
class Libusb < Formula
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'
head 'git://git.libusb.org/libusb.git'
conflicts_with 'libusbx',
:because => 'both provide libusb compatible libraries'
if build.head?
depends_on :automake
depends_on :libtool
end
option :universal
def install
ENV.universal_binary if build.universal?
if build.head?
inreplace "configure.ac", "AM_CONFIG_HEADER", "AC_CONFIG_HEADERS"
system "./autogen.sh"
end
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install"
end
end
|