blob: a5725feecd0c8d87d4f498f826bbb06b19eba6eb (
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-beta7.tar.bz2'
@homepage='http://camaya.net/glooxdownload'
@md5='482bf5ed8e4c14f2788efdd9c39e9acf'
def install
system "./configure", "--without-openssl",
"--with-gnutls",
"--with-zlib",
"--disable-debug",
"--prefix=#{prefix}"
system "make install"
end
end
|