homebrew-core/Formula/libstrophe.rb
2014-08-09 21:55:57 -05:00

59 lines
1.5 KiB
Ruby

require "formula"
class Libstrophe < Formula
homepage "http://strophe.im/libstrophe/"
url "https://github.com/strophe/libstrophe/archive/0.8.6.tar.gz"
sha1 "fc30c78945cb075a636cff8c76be671c8a364eb0"
head "https://github.com/strophe/libstrophe.git"
bottle do
cellar :any
sha1 "556ea839a05d6cde40358ca5a2a54c4efbd198eb" => :mavericks
sha1 "ffb4d4ccb4d334c9d032fa602a7c6714c7925ceb" => :mountain_lion
sha1 "fa2b24f8b3bdb025c85314ff5ac9b0acb9474eee" => :lion
end
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "pkg-config" => :build
depends_on "libtool" => :build
depends_on "openssl"
depends_on "check"
def install
# see https://github.com/strophe/libstrophe/issues/28
ENV.deparallelize
system "./bootstrap.sh"
system "./configure", "--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make", "install"
end
test do
(testpath/'test.c').write <<-EOS.undent
#include <strophe.h>
#include <assert.h>
int main(void) {
xmpp_ctx_t *ctx;
xmpp_log_t *log;
xmpp_initialize();
log = xmpp_get_default_logger(XMPP_LEVEL_DEBUG);
assert(log);
ctx = xmpp_ctx_new(NULL, log);
assert(ctx);
xmpp_ctx_free(ctx);
xmpp_shutdown();
return 0;
}
EOS
flags = ["-I#{include}/", "-lstrophe"]
system ENV.cc, "-o", "test", "test.c", *(flags + ENV.cflags.split)
system "./test"
end
end