blob: dfde0382c8011ee2d5d91d8bdcf637a13dbdb164 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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
Dir.chdir "daemontools-0.76" do
system "package/compile"
bin.install Dir["command/*"]
end
end
end
|