97 lines
2.7 KiB
Ruby
97 lines
2.7 KiB
Ruby
class Libvirt < Formula
|
|
desc "C virtualization API"
|
|
homepage "https://www.libvirt.org"
|
|
url "https://libvirt.org/sources/libvirt-4.10.0.tar.xz"
|
|
sha256 "7f9d830173f146ed3b8a8fdf6b6e03a99ce72b21a26c1468b2b688e5fdff276c"
|
|
head "https://github.com/libvirt/libvirt.git"
|
|
|
|
bottle do
|
|
sha256 "d0d7625855b9f5fd41b0aa057ed4944b1ee0fb6a0cb9b72b88d90c909e2a5b70" => :mojave
|
|
sha256 "c96aced93daf5b550abf43b9c639c96853adde609fe34825d559d2d1a069612f" => :high_sierra
|
|
sha256 "e07049493da05ee5de04ed3742d729c5a7304a84d8a4a055076efebff9923819" => :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
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>EnvironmentVariables</key>
|
|
<dict>
|
|
<key>PATH</key>
|
|
<string>#{HOMEBREW_PREFIX}/bin</string>
|
|
</dict>
|
|
<key>Label</key>
|
|
<string>#{plist_name}</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>#{sbin}/libvirtd</string>
|
|
</array>
|
|
<key>KeepAlive</key>
|
|
<true/>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
</dict>
|
|
</plist>
|
|
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
|