7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
34 lines
864 B
Ruby
34 lines
864 B
Ruby
require 'formula'
|
|
|
|
class Ejabberd <Formula
|
|
url "http://www.process-one.net/downloads/ejabberd/2.1.3/ejabberd-2.1.3.tar.gz"
|
|
homepage 'http://www.ejabberd.im'
|
|
md5 'e5c87eda5312a6e8a53df0f9b4844b69'
|
|
|
|
depends_on "erlang"
|
|
|
|
def install
|
|
ENV['TARGET_DIR'] = ENV['DESTDIR'] = "#{lib}/ejabberd/erlang/lib/ejabberd-#{version}"
|
|
ENV['MAN_DIR'] = man
|
|
ENV['SBIN_DIR'] = sbin
|
|
|
|
Dir.chdir "src" do
|
|
system "./configure", "--prefix=#{prefix}",
|
|
"--sysconfdir=#{etc}",
|
|
"--localstatedir=#{var}"
|
|
system "make"
|
|
system "make install"
|
|
end
|
|
|
|
(etc+"ejabberd").mkpath
|
|
(var+"lib/ejabberd").mkpath
|
|
(var+"spool/ejabberd").mkpath
|
|
end
|
|
|
|
def caveats; <<-EOS
|
|
If you face nodedown problems, concat your machine name to:
|
|
/private/etc/hosts
|
|
after 'localhost'.
|
|
EOS
|
|
end
|
|
end
|