homebrew-core/Formula/gloox.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

40 lines
1.1 KiB
Ruby

class Gloox < Formula
desc "C++ Jabber/XMPP library that handles the low-level protocol"
homepage "https://camaya.net/gloox/"
url "https://camaya.net/download/gloox-1.0.12.tar.bz2"
mirror "https://mirrors.kernel.org/debian/pool/main/g/gloox/gloox_1.0.12.orig.tar.bz2"
sha256 "67125a2e98a9803179af75f1c9c3c0a14f0bc238d48f23c4a3cf7c8fdebc43a9"
bottle do
cellar :any
sha1 "5060164baddf38f05951775cfd5f70b2f52056d2" => :yosemite
sha1 "c2c278952e2256638c8165bf56168d069375fd7f" => :mavericks
sha1 "ce76ecc24eef8c32f79d6e65bf6eae8a0f6efdcf" => :mountain_lion
end
depends_on "pkg-config" => :build
depends_on "openssl" => :recommended
depends_on "gnutls" => :optional
depends_on "libidn" => :optional
def install
args = %W[
--prefix=#{prefix}
--with-zlib
--disable-debug
]
if build.with? "gnutls"
args << "--with-gnutls=yes"
else
args << "--with-openssl=#{Formula["openssl"].opt_prefix}"
end
system "./configure", *args
system "make", "install"
end
test do
system bin/"gloox-config", "--cflags", "--libs", "--version"
end
end