72 lines
2.5 KiB
Ruby
72 lines
2.5 KiB
Ruby
class Ola < Formula
|
|
desc "Open Lighting Architecture for lighting control information"
|
|
homepage "https://www.openlighting.org/ola/"
|
|
url "https://github.com/OpenLightingProject/ola/releases/download/0.10.4/ola-0.10.4.tar.gz"
|
|
sha256 "be0aacf5b2a61dd2b75e0ee3ec9a642012751268aa2d28bd24e8d87837a8f707"
|
|
|
|
bottle do
|
|
sha256 "5648e88c98f2164018c3d15fe20cc7f9633313c64eb88ee43cd3d461cdd3713e" => :sierra
|
|
sha256 "e02d2bcdb219f6a881c11cbde008ecdd5e2213884bbae9e90ce30215620eec00" => :el_capitan
|
|
sha256 "28ccbad1d470c0d2835908f1e5ea8c22eb2376a322d5eb61dd43e300df60f2ff" => :yosemite
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/OpenLightingProject/ola.git"
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
end
|
|
|
|
option "with-libftdi", "Install FTDI USB plugin for OLA."
|
|
option "with-rdm-tests", "Install RDM Tests for OLA."
|
|
deprecated_option "with-ftdi" => "with-libftdi"
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "libmicrohttpd"
|
|
depends_on "ossp-uuid"
|
|
depends_on "protobuf@3.1"
|
|
depends_on :python if MacOS.version <= :snow_leopard
|
|
depends_on "liblo" => :recommended
|
|
depends_on "libusb" => :recommended
|
|
depends_on "doxygen" => :optional
|
|
depends_on "libftdi" => :optional
|
|
depends_on "libftdi0" if build.with? "libftdi"
|
|
|
|
resource "protobuf-c" do
|
|
url "https://github.com/protobuf-c/protobuf-c/releases/download/v1.2.1/protobuf-c-1.2.1.tar.gz"
|
|
sha256 "846eb4846f19598affdc349d817a8c4c0c68fd940303e6934725c889f16f00bd"
|
|
end
|
|
|
|
def install
|
|
resource("protobuf-c").stage do
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{buildpath}/vendor/protobuf-c"
|
|
system "make", "install"
|
|
end
|
|
ENV.prepend_path "PKG_CONFIG_PATH", buildpath/"vendor/protobuf-c/lib/pkgconfig"
|
|
|
|
protobuf_pth = Formula["protobuf@3.1"].opt_lib/"python2.7/site-packages/homebrew-protobuf.pth"
|
|
(buildpath/".brew_home/Library/Python/2.7/lib/python/site-packages").install_symlink protobuf_pth
|
|
|
|
args = %W[
|
|
--disable-fatal-warnings
|
|
--disable-dependency-tracking
|
|
--disable-silent-rules
|
|
--prefix=#{prefix}
|
|
--enable-python-libs
|
|
--disable-unittests
|
|
]
|
|
|
|
args << "--enable-rdm-tests" if build.with? "rdm-tests"
|
|
args << "--enable-doxygen-man" if build.with? "doxygen"
|
|
|
|
system "autoreconf", "-fvi" if build.head?
|
|
system "./configure", *args
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
system bin/"ola_plugin_info"
|
|
end
|
|
end
|