00774a6f4c
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
34 lines
737 B
Ruby
34 lines
737 B
Ruby
require 'formula'
|
|
|
|
class Pow < Formula
|
|
url 'http://get.pow.cx/versions/0.3.2.tar.gz'
|
|
homepage 'http://pow.cx/'
|
|
md5 '2e70a1b731160a0dc79d2b6203f258f7'
|
|
|
|
depends_on 'node'
|
|
|
|
def install
|
|
(prefix+'pow').install Dir['*']
|
|
|
|
bin.mkdir
|
|
File.open("#{bin}/pow", 'w') do |f|
|
|
f.write <<-EOS.undent
|
|
#!/bin/sh
|
|
export POW_BIN="#{HOMEBREW_PREFIX}/bin/pow"
|
|
exec "#{HOMEBREW_PREFIX}/bin/node" "#{prefix}/pow/lib/command.js" "$@"
|
|
EOS
|
|
end
|
|
system "chmod +x #{bin}/pow"
|
|
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
|