67 lines
2 KiB
Ruby
67 lines
2 KiB
Ruby
class Libvirt < Formula
|
|
desc "C virtualization API"
|
|
homepage "https://www.libvirt.org"
|
|
url "https://libvirt.org/sources/libvirt-1.3.2.tar.gz"
|
|
sha256 "e3c6fc2683178660b371efb3ac7a1103a3f4b78efac7ffe560bc5917974ccf05"
|
|
|
|
bottle do
|
|
sha256 "cda088f24db7ec467c7c57b327272489285b9efdc362e34f92ae9c3a87119d31" => :el_capitan
|
|
sha256 "2bce8df62700d8982f2d447ce0cf330363f828e0ef3232461d4a9894360066ea" => :yosemite
|
|
sha256 "3a8ea1878ebe2a331f1941649e22572716a5f2230a8275268c9e05ef0b8d468f" => :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 = ["--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" do |s|
|
|
s.gsub! "/etc/", "#{HOMEBREW_PREFIX}/etc/"
|
|
end
|
|
|
|
# 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
|
|
end
|