2012-08-16 18:56:43 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Libsoup < Formula
|
|
|
|
homepage 'http://live.gnome.org/LibSoup'
|
2013-11-12 16:32:29 +00:00
|
|
|
url 'http://ftp.gnome.org/pub/GNOME/sources/libsoup/2.44/libsoup-2.44.2.tar.xz'
|
|
|
|
sha256 'e7e4b5ab74a6c00fc267c9f5963852d28759ad3154dab6388e2d6e1962d598f3'
|
2012-08-16 18:56:43 +00:00
|
|
|
|
|
|
|
depends_on 'xz' => :build
|
2013-02-28 02:38:56 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2013-04-27 22:12:09 +00:00
|
|
|
depends_on 'intltool' => :build
|
2012-08-16 18:56:43 +00:00
|
|
|
depends_on 'glib-networking' # Required at runtime for TLS support
|
|
|
|
depends_on 'gnutls' # Also required for TLS
|
|
|
|
depends_on 'sqlite' # For SoupCookieJarSqlite
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug",
|
|
|
|
"--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
2013-02-28 02:38:56 +00:00
|
|
|
"--without-gnome",
|
|
|
|
"--disable-tls-check"
|
2012-08-16 18:56:43 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|