diff options
Diffstat (limited to 'Library')
| -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" |
