b3900f37dd
Thus we download from the best mirror always.
12 lines
374 B
Ruby
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
|