homebrew-core/Formula/daemontools.rb
Adam Vandenberg da3fdbd0cf Use "cd" instead of "Dir.chdir"
* And "mkdir" isntead of "Dir.mkdir"
* And "Dir[]" instead of "Dir.glob"
* Also style fixes and nitpicks
2012-02-24 21:35:50 -08:00

14 lines
322 B
Ruby

require 'formula'
class Daemontools < Formula
homepage 'http://cr.yp.to/daemontools.html'
url 'http://cr.yp.to/daemontools/daemontools-0.76.tar.gz'
md5 '1871af2453d6e464034968a0fbcb2bfc'
def install
cd "daemontools-0.76" do
system "package/compile"
bin.install Dir["command/*"]
end
end
end