homebrew-core/Formula/pow.rb
2017-12-13 01:39:38 -08:00

35 lines
980 B
Ruby

class Pow < Formula
desc "Zero-config Rack server for local apps on macOS"
homepage "http://pow.cx/"
url "http://get.pow.cx/versions/0.6.0.tar.gz"
sha256 "225e52bdc0ace5747197a5ece777785245110e576a5136a3d17136ab88a74364"
bottle :unneeded
depends_on "node"
def install
libexec.install Dir["*"]
(bin/"pow").write <<~EOS
#!/bin/sh
export POW_BIN="#{bin}/pow"
exec "#{Formula["node"].opt_bin}/node" "#{libexec}/lib/command.js" "$@"
EOS
end
def caveats
<<~EOS
Create the required host directories:
mkdir -p ~/Library/Application\\ Support/Pow/Hosts
ln -s ~/Library/Application\\ Support/Pow/Hosts ~/.pow
Setup port 80 forwarding and launchd agents:
sudo pow --install-system
pow --install-local
Load launchd agents:
sudo launchctl load -w /Library/LaunchDaemons/cx.pow.firewall.plist
launchctl load -w ~/Library/LaunchAgents/cx.pow.powd.plist
EOS
end
end