2009-10-15 08:07:12 +00:00
|
|
|
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
|
2009-08-07 14:41:43 +00:00
|
|
|
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
|