require 'formula' class Vrpn < Formula homepage 'http://vrpn.org' url 'ftp://ftp.cs.unc.edu/pub/packages/GRIP/vrpn/vrpn_07_29.zip' md5 '422f13fc9cbb62d36c96f3cc3b06cec9' head 'git://git.cs.unc.edu/vrpn.git' depends_on 'libusb' # for HID support depends_on 'cmake' => :build depends_on 'doxygen' if ARGV.include? '--docs' def options [ ['--clients', 'Build client apps and tests.'], ['--docs', 'Build doxygen-based API documentation'] ] end def install args = std_cmake_args if ARGV.include? '--clients' args << "-DVRPN_BUILD_CLIENTS:BOOL=ON" else args << "-DVRPN_BUILD_CLIENTS:BOOL=OFF" end args << ".." mkdir "build" do system "cmake", *args system "make doc" if ARGV.include? '--docs' system "make install" end end end