homebrew-core/Formula/faad2.rb
Mike Arthur b3900f37dd Be nicer to Sourceforge by using their gateway server
Thus we download from the best mirror always.
2009-12-05 15:09:31 +00:00

12 lines
374 B
Ruby

require 'formula'
class Faad2 <Formula
url 'http://downloads.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