diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/daemontools.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/daemontools.rb b/Library/Formula/daemontools.rb new file mode 100644 index 000000000..a1a109ed9 --- /dev/null +++ b/Library/Formula/daemontools.rb @@ -0,0 +1,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
\ No newline at end of file |
