aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorSam Dengler2011-02-09 11:18:16 -0500
committerMike McQuaid2011-02-27 20:17:23 +0000
commit3de7e692e7c7b2a60da9873e7e198f06dbd06cfb (patch)
treec9b91450f0429998235598d80cd2babcdbe3364f /Library
parente0a3502c4a853e6e340113abb036bb7639efb8a3 (diff)
downloadhomebrew-3de7e692e7c7b2a60da9873e7e198f06dbd06cfb.tar.bz2
New formula for libdshconfig
libdshconfig is a library dependency for dsh (distributed shell) Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/libdshconfig.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/libdshconfig.rb b/Library/Formula/libdshconfig.rb
new file mode 100644
index 000000000..b7054e480
--- /dev/null
+++ b/Library/Formula/libdshconfig.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Libdshconfig <Formula
+ url 'http://www.netfort.gr.jp/~dancer/software/downloads/libdshconfig-0.20.13.tar.gz'
+ homepage 'http://www.netfort.gr.jp/~dancer/software/dsh.html.en'
+ md5 'cb9db850231091a3a848e654d9f0806b'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end