class Libvirt < Formula desc "C virtualization API" homepage "https://www.libvirt.org" url "https://libvirt.org/sources/libvirt-5.8.0.tar.xz" sha256 "e23328289b18bdedc1e966f6c26402b2983149c660ed8bd52cda6feab0c20c55" head "https://github.com/libvirt/libvirt.git" bottle do sha256 "e14f69ece2a72dcf3ef80d21f47f5a224174a7c6cf7cbad91ef0caa079cbc7e1" => :catalina sha256 "9b94b198813517fc302c8a4dc7ff13c391242f76a5ca9b3dc22e375c83de43e8" => :mojave sha256 "d1e8c66bfe529affe72ed47f89abb785aa57c089675e34f2836dbe24e36658e5" => :high_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? # Work around a gnulib issue with macOS Catalina args << "gl_cv_func_ftello_works=yes" 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 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