a16c10e3b8
libdshconfig is a library dependency for dsh (distributed shell) Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
13 lines
419 B
Ruby
13 lines
419 B
Ruby
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
|