aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gloox.rb
blob: ebcab075e7fddf4eea23e8c9eb80b49c48830e90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class Gloox <Formula
  url 'http://camaya.net/download/gloox-1.0.tar.bz2'
  homepage 'http://camaya.net/glooxdownload'
  md5 'f8eacf1c6476e0a309b453fd04f90e31'

  def install
    system "./configure", "--without-openssl", 
                          "--with-gnutls",
                          "--with-zlib",
                          "--disable-debug",
                          "--prefix=#{prefix}"
    system "make install"
  end
end