diff options
| author | Justin Clift | 2014-10-01 12:34:32 +0100 |
|---|---|---|
| committer | Jack Nagel | 2014-10-01 11:21:52 -0500 |
| commit | 300bc2e4eacd90027b16f37cd0eaa7bfc8c0974d (patch) | |
| tree | 49113099a34134cb3c7cc90cd9d8caf78af01022 /Library/Formula | |
| parent | 74c1863ae01f5a8b9157972c3e56bfd8376366b9 (diff) | |
| download | homebrew-300bc2e4eacd90027b16f37cd0eaa7bfc8c0974d.tar.bz2 | |
libvirt 1.2.9
Also converted single quote characters to double quote ones
Closes #32837.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/libvirt.rb | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/Library/Formula/libvirt.rb b/Library/Formula/libvirt.rb index 544291fd7..241c1509e 100644 --- a/Library/Formula/libvirt.rb +++ b/Library/Formula/libvirt.rb @@ -1,9 +1,9 @@ -require 'formula' +require "formula" class Libvirt < Formula - homepage 'http://www.libvirt.org' - url 'http://libvirt.org/sources/libvirt-1.2.8.tar.gz' - sha1 '76dd3376abff73d297e183257eef4a71b9e5d5c8' + homepage "http://www.libvirt.org" + url "http://libvirt.org/sources/libvirt-1.2.9.tar.gz" + sha1 "f2de4cda8640b3abb13e6b30dd4882cc7e7b39e3" bottle do sha1 "9267bfcd188156c3fa4f930402172f4d09c2918a" => :mavericks @@ -11,12 +11,12 @@ class Libvirt < Formula sha1 "604f6d23dcb081068373cb6567f2ad2ad0fc4c63" => :lion end - option 'without-libvirtd', 'Build only the virsh client and development libraries' + 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' + 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. @@ -43,11 +43,11 @@ class Libvirt < Formula "--with-yajl", "--without-qemu"] - args << "--without-libvirtd" if build.without? 'libvirtd' + args << "--without-libvirtd" if build.without? "libvirtd" system "./configure", *args - # Compilation of docs doesn't get done if we jump straight to "make install" + # Compilation of docs doesn"t get done if we jump straight to "make install" system "make" system "make install" |
