aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorSam Dengler2011-02-09 11:19:52 -0500
committerMike McQuaid2011-02-27 20:17:23 +0000
commit3c886c9540ee78f8d763abb590b26f0ee203efff (patch)
tree2b6e10bfea7efebf36611375efd6aed8a4e03e65 /Library/Formula
parent3de7e692e7c7b2a60da9873e7e198f06dbd06cfb (diff)
downloadhomebrew-3c886c9540ee78f8d763abb590b26f0ee203efff.tar.bz2
New formula for dsh
dsh is a distributed ssh utility Closes #4174. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/dsh.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/dsh.rb b/Library/Formula/dsh.rb
new file mode 100644
index 000000000..278290b4a
--- /dev/null
+++ b/Library/Formula/dsh.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Dsh <Formula
+ url 'http://www.netfort.gr.jp/~dancer/software/downloads/dsh-0.25.9.tar.gz'
+ homepage 'http://www.netfort.gr.jp/~dancer/software/dsh.html.en'
+ md5 '60734780242172fca9e68d223654292d'
+
+ depends_on 'libdshconfig'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end