aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/adplug.rb
blob: 5a091a7f552bbfd78bc1a978dd350bfe3cd8be83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'formula'

class Adplug <Formula
  url 'http://downloads.sourceforge.net/project/adplug/AdPlug%20core%20library/2.2.1/adplug-2.2.1.tar.bz2'
  homepage 'http://adplug.sf.net'
  md5 '8f815fd5d254de0fe5df818df9d1d8af'

  depends_on 'pkg-config'
  depends_on 'libbinio'

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