aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libusbx.rb
blob: 6435e9d03f79d2de39472b85048d1c969539babc (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
32
require 'formula'

class Libusbx < Formula
  homepage 'http://libusbx.org'
  url 'http://downloads.sourceforge.net/project/libusbx/releases/1.0.17/source/libusbx-1.0.17.tar.bz2'
  sha1 'a491054e7f4f3f52b12bd567335180586a54ae16'

  head do
    url 'https://github.com/libusbx/libusbx.git'

    depends_on :automake
    depends_on :libtool
  end


  conflicts_with 'libusb',
    :because => 'both provide libusb compatible libraries'

  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?
    system "./autogen.sh" if build.head?
    args = %W[--disable-dependency-tracking --prefix=#{prefix}]
    args << "--disable-log" if build.include? 'no-runtime-logging'
    args << "--enable-debug-log" if build.include? 'with-default-log-level-debug'
    system "./configure", *args
    system "make install"
  end
end