From 85cc1a353109fb1b9c6a7b85dcfb85f0bcf8a0ca Mon Sep 17 00:00:00 2001 From: Jeffrey Wildman Date: Fri, 3 Apr 2015 13:29:34 -0400 Subject: [PATCH] Resolve brew audit --strict items * Homepage with https * Call to make install * Prefer double quotes to single --- libsoup-with-gnome.rb | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/libsoup-with-gnome.rb b/libsoup-with-gnome.rb index ec701da..3a70966 100644 --- a/libsoup-with-gnome.rb +++ b/libsoup-with-gnome.rb @@ -1,7 +1,7 @@ class LibsoupWithGnome < Formula - homepage 'http://live.gnome.org/LibSoup' - url 'http://ftp.gnome.org/pub/GNOME/sources/libsoup/2.46/libsoup-2.46.0.tar.xz' - sha256 'fa3d5574c1a2df521242e2ca624a2b3057121798cab9f8f40525aa186a7b15a3' + homepage "https://live.gnome.org/LibSoup" + url "http://ftp.gnome.org/pub/GNOME/sources/libsoup/2.46/libsoup-2.46.0.tar.xz" + sha256 "fa3d5574c1a2df521242e2ca624a2b3057121798cab9f8f40525aa186a7b15a3" bottle do revision 1 @@ -10,12 +10,12 @@ class LibsoupWithGnome < Formula sha1 "693146c16d4105de3716252f2da9cf35156c0328" => :mountain_lion end - depends_on 'pkg-config' => :build - depends_on 'intltool' => :build - depends_on 'glib-networking' - depends_on 'gnutls' - depends_on 'sqlite' - depends_on 'gobject-introspection' => :optional + depends_on "pkg-config" => :build + depends_on "intltool" => :build + depends_on "glib-networking" + depends_on "gnutls" + depends_on "sqlite" + depends_on "gobject-introspection" => :optional def install args = [ @@ -33,6 +33,6 @@ class LibsoupWithGnome < Formula end system "./configure", *args - system "make install" + system "make", "install" end end