aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ola.rb
blob: e66d6fd27afd31b75097630aadc7829409dda2f4 (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
33
34
35
36
37
38
39
40
41
42
43
44
require "formula"

class Ola < Formula
  homepage "http://www.openlighting.org/ola/"
  url "https://github.com/OpenLightingProject/ola/releases/download/0.9.2/ola-0.9.2.tar.gz"
  sha1 "f9cedbb9bf8e568803f296b7ec8bdfcf74ae5bab"

  bottle do
    sha1 "d9f67796fc3228e94d07cead6a91dfccbe3a2f2b" => :mavericks
    sha1 "1b2577335ce33aa83e4bceb27260a585bce06b91" => :mountain_lion
    sha1 "de23fe04b9a29273c61d58287d540f90db9ab662" => :lion
  end

  option :universal

  depends_on "pkg-config" => :build
  depends_on "cppunit"
  depends_on "protobuf-c"
  depends_on "libmicrohttpd"
  depends_on "libusb"
  depends_on "liblo"
  depends_on :python => :optional

  def install
    ENV.universal_binary if build.universal?

    args = %W[
      --disable-debug
      --disable-fatal-warnings
      --disable-dependency-tracking
      --disable-silent-rules
      --prefix=#{prefix}
    ]
    args << "--enable-python-libs" if build.with? "python"

    system "./configure", *args

    system "make", "install"
  end

  test do
    system bin/"ola_plugin_info"
  end
end