class Libvirt < Formula desc "C virtualization API" homepage "https://www.libvirt.org" url "https://libvirt.org/sources/libvirt-5.0.0.tar.xz" sha256 "afa81dbbc90b5209575930a820a222ff371e5ece5c1d8ec8f46b53c52b73b2e7" head "https://github.com/libvirt/libvirt.git" bottle do sha256 "f65eca09badc8ae25ba6ebd8253bc54a95fceee7ee713e79ef4c5c8bc714e173" => :mojave sha256 "6a6caadfdfd51092471c0a22576a6314f294af06689363e91e5fa6294ba2458f" => :high_sierra sha256 "17d05b6bc8ec075b8191b13f5c7388dcf6d54396e3383753990b581e5fd3a353" => :sierra end depends_on "pkg-config" => :build depends_on "gnutls" depends_on "libgcrypt" depends_on "yajl" if build.head? depends_on "autoconf" => :build depends_on "automake" => :build depends_on "gettext" => :build depends_on "libtool" => :build depends_on "rpcgen" => :build 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-qemu ] args << "ac_cv_path_RPCGEN=#{Formula["rpcgen"].opt_prefix}/bin/rpcgen" if build.head? system "./autogen.sh" if build.head? 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/" # Update the libvirt daemon config file to reflect the Homebrew prefix inreplace "#{etc}/libvirt/libvirtd.conf" do |s| s.gsub! "/etc/", "#{HOMEBREW_PREFIX}/etc/" s.gsub! "/var/", "#{HOMEBREW_PREFIX}/var/" end end plist_options :manual => "libvirtd" def plist; <<~EOS EnvironmentVariables PATH #{HOMEBREW_PREFIX}/bin Label #{plist_name} ProgramArguments #{sbin}/libvirtd KeepAlive RunAtLoad EOS end test do if build.head? output = shell_output("#{bin}/virsh -V") assert_match "Compiled with support for:", output else output = shell_output("#{bin}/virsh -v") assert_match version.to_s, output end end end