2014-12-23 02:48:29 +00:00
|
|
|
class LibsoupWithGnome < Formula
|
2015-10-04 03:13:20 +00:00
|
|
|
desc "HTTP client/server library for GNOME"
|
2015-04-03 17:29:34 +00:00
|
|
|
homepage "https://live.gnome.org/LibSoup"
|
2016-02-04 00:27:53 +00:00
|
|
|
url "https://download.gnome.org/sources/libsoup/2.53/libsoup-2.53.2.tar.xz"
|
|
|
|
sha256 "6d36c9924a517a4e455760d4c15995ef3b0d653693f5be99e56fd6fd23dfc413"
|
2014-12-23 02:48:29 +00:00
|
|
|
|
2015-11-25 18:08:45 +00:00
|
|
|
depends_on "gobject-introspection" => :build
|
2015-04-03 17:29:34 +00:00
|
|
|
depends_on "intltool" => :build
|
2015-11-25 18:08:45 +00:00
|
|
|
depends_on "pkg-config" => :build
|
|
|
|
depends_on "vala" => :build
|
|
|
|
|
2015-04-03 17:29:34 +00:00
|
|
|
depends_on "glib-networking"
|
|
|
|
depends_on "gnutls"
|
|
|
|
depends_on "sqlite"
|
2014-12-23 02:48:29 +00:00
|
|
|
|
|
|
|
def install
|
2015-11-25 18:08:45 +00:00
|
|
|
system "./configure", "--disable-debug",
|
|
|
|
"--disable-dependency-tracking",
|
|
|
|
"--disable-silent-rules",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--disable-tls-check"
|
2015-04-03 17:29:34 +00:00
|
|
|
system "make", "install"
|
2014-12-23 02:48:29 +00:00
|
|
|
end
|
|
|
|
end
|