blob: 404e190f9a4fa194db888435ff18c9b0ec3017bf (
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
    cd "daemontools-0.76" do
      system "package/compile"
      bin.install Dir["command/*"]
    end
  end
end
 |