aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libdshconfig.rb
blob: b7054e480ee6fde8af202e62bf97f737cb7e07d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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