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

class Faad2 <Formula
  url 'http://surfnet.dl.sourceforge.net/project/faac/faad2-src/faad2-2.7/faad2-2.7.tar.bz2'
  md5 '4c332fa23febc0e4648064685a3d4332'
  homepage 'http://www.audiocoding.com/faad2.html'

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