aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorRoger Jungemann2010-05-26 21:17:06 -0700
committerAdam Vandenberg2010-06-01 19:45:32 -0700
commit8e16a9287e2b372cc87161e43bc4f0c3fe47567b (patch)
treecbd484f1699f974cfed298f71850ed489f385ddb /Library/Formula
parentf3bba6851d70df8796e51636b414439ec22a94a3 (diff)
downloadhomebrew-8e16a9287e2b372cc87161e43bc4f0c3fe47567b.tar.bz2
Added daemontools, a set of server admin utilities.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/daemontools.rb14
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