diff options
| author | Carl Moden | 2014-10-29 07:41:11 +0100 | 
|---|---|---|
| committer | Mike McQuaid | 2014-10-29 14:02:38 +0000 | 
| commit | 01cf6061a12616536e88a31ab91da03fb7568fb6 (patch) | |
| tree | c6f6825742b3176f28235c83fccb257e3490ca30 /Library/Formula/glib-networking.rb | |
| parent | b0c63d4f1fbf3687ff0d7d7ca45160aa4cf6dffc (diff) | |
| download | homebrew-01cf6061a12616536e88a31ab91da03fb7568fb6.tar.bz2 | |
glib-networking: remove bottles.
As noted in a comment in the Formula, the installation fails when
poured from a bottle. Actually prevent pouring of bottles.
Closes #33701.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula/glib-networking.rb')
| -rw-r--r-- | Library/Formula/glib-networking.rb | 11 | 
1 files changed, 4 insertions, 7 deletions
| diff --git a/Library/Formula/glib-networking.rb b/Library/Formula/glib-networking.rb index 7a40f6e76..94d76b079 100644 --- a/Library/Formula/glib-networking.rb +++ b/Library/Formula/glib-networking.rb @@ -1,17 +1,14 @@  require "formula" -# This formula installs files directly into the top-level gio modules -# directory, so it can't be bottled.  class GlibNetworking < Formula    homepage "https://launchpad.net/glib-networking"    url "http://ftp.gnome.org/pub/GNOME/sources/glib-networking/2.42/glib-networking-2.42.0.tar.xz"    sha256 "304dd9e4c0ced69094300e0b9e66cd2eaae7161b9fc3186536d11458677d820d" -  bottle do -    cellar :any -    sha1 "d9f3da283774d06d62b46d6655e8ee9a5b7ec328" => :yosemite -    sha1 "3e6fa8b013495e3699312db1e6b3ef8a6109cffa" => :mavericks -    sha1 "50ba91b0e70f861567f728e5b2012dea6c140592" => :mountain_lion +  def pour_bottle? +    # This formula installs files directly into the top-level gio modules +    # directory, so it can't be bottled. +    false    end    depends_on "pkg-config" => :build | 
