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-03-28 00:56:43 +00:00
|
|
|
url "https://download.gnome.org/sources/libsoup/2.54/libsoup-2.54.0.1.tar.xz"
|
|
|
|
sha256 "ade4920166bd036e8890d04acdc135686d877670953949fa6245797c906e38e0"
|
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
|