61b2307139
brewkit.rb changes ENV destructively, so lets not do that everytime a formula is required. Now it's possible for other tools to require a formula description without worrying about side-effects.
16 lines
No EOL
462 B
Ruby
16 lines
No EOL
462 B
Ruby
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 |