class Libvirt < Formula desc "C virtualization API" homepage "https://www.libvirt.org" url "https://libvirt.org/sources/libvirt-2.2.0.tar.xz" sha256 "e315a8d66aeeb0e7b6459e20b8abae16a23764c3f5d24c7d9462465d26791699" bottle do sha256 "d298d7651ddeb7ff8859a510b27de9f9fc2808c3d9832e08814a5f5cf0840adc" => :sierra sha256 "2d20f265b9f75b40ed2a61a1d9d8ad4c5e5a33ecde5920500797fbe56b164c1f" => :el_capitan sha256 "b7f7238c68c5eaf9fafbb679e0e5d24f753860308195ea92f8f98c5c8ae41918" => :yosemite sha256 "93d261b3ad4a4ac27bf67ad0f31c681ca6311d05c038d8b30e0999264f7a2410" => :mavericks end option "without-libvirtd", "Build only the virsh client and development libraries" depends_on "pkg-config" => :build depends_on "gnutls" depends_on "libgcrypt" depends_on "yajl" if MacOS.version <= :leopard # Definitely needed on Leopard, but not on Snow Leopard. depends_on "readline" depends_on "libxml2" end fails_with :llvm do build 2326 cause "Undefined symbols when linking" end def install args = %W[ --prefix=#{prefix} --localstatedir=#{var} --mandir=#{man} --sysconfdir=#{etc} --with-esx --with-init-script=none --with-remote --with-test --with-vbox --with-vmware --with-yajl --without-qemu ] args << "--without-libvirtd" if build.without? "libvirtd" system "./configure", *args # Compilation of docs doesn't get done if we jump straight to "make install" system "make" system "make", "install" # Update the SASL config file with the Homebrew prefix inreplace "#{etc}/sasl2/libvirt.conf", "/etc/", "#{HOMEBREW_PREFIX}/etc/" # If the libvirt daemon is built, update its config file to reflect # the Homebrew prefix if build.with? "libvirtd" inreplace "#{etc}/libvirt/libvirtd.conf" do |s| s.gsub! "/etc/", "#{HOMEBREW_PREFIX}/etc/" s.gsub! "/var/", "#{HOMEBREW_PREFIX}/var/" end end end test do output = shell_output("#{bin}/virsh -v") assert_match version.to_s, output end end