aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/advancecomp.rb
blob: 72d8b34f02969312d098c9066457f03c3c0c043e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Advancecomp <Formula
  url 'http://prdownloads.sourceforge.net/advancemame/advancecomp-1.15.tar.gz'
  md5 'bb236d8bee6fa473d34108cda1e09076'
  homepage 'http://advancemame.sourceforge.net/comp-readme.html'

  def install
    system "./configure", "--prefix=#{prefix}", "--mandir=#{man}", "--disable-debug", "--disable-dependency-tracking"
    system "make install"
  end
end