homebrew-core/Formula/gloox.rb

16 lines
453 B
Ruby
Raw Normal View History

require 'formula'
2009-07-10 02:11:33 +00:00
class Gloox <Formula
2010-04-20 13:53:47 +00:00
url 'http://camaya.net/download/gloox-1.0.tar.bz2'
homepage 'http://camaya.net/glooxdownload'
md5 'f8eacf1c6476e0a309b453fd04f90e31'
2009-07-10 02:11:33 +00:00
def install
system "./configure", "--without-openssl",
"--with-gnutls",
"--with-zlib",
"--disable-debug",
"--prefix=#{prefix}"
2009-07-10 02:11:33 +00:00
system "make install"
end
end