homebrew-core/Formula/libdshconfig.rb

14 lines
429 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Libdshconfig < Formula
homepage 'http://www.netfort.gr.jp/~dancer/software/dsh.html.en'
2013-01-29 05:23:39 +00:00
url 'http://www.netfort.gr.jp/~dancer/software/downloads/libdshconfig-0.20.13.tar.gz'
sha1 'fc19f56ee61ff71ae5699bc97b89cc4931ce64a1'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end