homebrew-core/Formula/pow.rb
Michael Hanson 717f6ea0e8 Pow 0.4.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-06-07 19:28:03 -07:00

28 lines
639 B
Ruby

require 'formula'
class Pow < Formula
homepage 'http://pow.cx/'
url 'http://get.pow.cx/versions/0.4.0.tar.gz'
sha1 '85a71532934af680c4a96eadc4e8246d54655c14'
depends_on 'node'
def install
libexec.install Dir['*']
(bin/'pow').write <<-EOS.undent
#!/bin/sh
export POW_BIN="#{HOMEBREW_PREFIX}/bin/pow"
exec "#{HOMEBREW_PREFIX}/bin/node" "#{libexec}/lib/command.js" "$@"
EOS
end
def caveats;
<<-EOS.undent
Sets up firewall rules to forward port 80 to Pow:
sudo pow --install-system
Installs launchd agent to start on login:
pow --install-local
EOS
end
end