Resolve brew audit --strict items
* Homepage with https * Call to make install * Prefer double quotes to single
This commit is contained in:
parent
ba75a48976
commit
85cc1a3531
|
@ -1,7 +1,7 @@
|
||||||
class LibsoupWithGnome < Formula
|
class LibsoupWithGnome < Formula
|
||||||
homepage 'http://live.gnome.org/LibSoup'
|
homepage "https://live.gnome.org/LibSoup"
|
||||||
url 'http://ftp.gnome.org/pub/GNOME/sources/libsoup/2.46/libsoup-2.46.0.tar.xz'
|
url "http://ftp.gnome.org/pub/GNOME/sources/libsoup/2.46/libsoup-2.46.0.tar.xz"
|
||||||
sha256 'fa3d5574c1a2df521242e2ca624a2b3057121798cab9f8f40525aa186a7b15a3'
|
sha256 "fa3d5574c1a2df521242e2ca624a2b3057121798cab9f8f40525aa186a7b15a3"
|
||||||
|
|
||||||
bottle do
|
bottle do
|
||||||
revision 1
|
revision 1
|
||||||
|
@ -10,12 +10,12 @@ class LibsoupWithGnome < Formula
|
||||||
sha1 "693146c16d4105de3716252f2da9cf35156c0328" => :mountain_lion
|
sha1 "693146c16d4105de3716252f2da9cf35156c0328" => :mountain_lion
|
||||||
end
|
end
|
||||||
|
|
||||||
depends_on 'pkg-config' => :build
|
depends_on "pkg-config" => :build
|
||||||
depends_on 'intltool' => :build
|
depends_on "intltool" => :build
|
||||||
depends_on 'glib-networking'
|
depends_on "glib-networking"
|
||||||
depends_on 'gnutls'
|
depends_on "gnutls"
|
||||||
depends_on 'sqlite'
|
depends_on "sqlite"
|
||||||
depends_on 'gobject-introspection' => :optional
|
depends_on "gobject-introspection" => :optional
|
||||||
|
|
||||||
def install
|
def install
|
||||||
args = [
|
args = [
|
||||||
|
@ -33,6 +33,6 @@ class LibsoupWithGnome < Formula
|
||||||
end
|
end
|
||||||
|
|
||||||
system "./configure", *args
|
system "./configure", *args
|
||||||
system "make install"
|
system "make", "install"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue