homebrew-core/Formula/faad2.rb

14 lines
433 B
Ruby
Raw Normal View History

require 'formula'
2009-10-07 11:33:22 +00:00
2011-03-10 05:11:03 +00:00
class Faad2 < Formula
url 'http://downloads.sourceforge.net/project/faac/faad2-src/faad2-2.7/faad2-2.7.tar.bz2'
sha1 'b0e80481d27ae9faf9e46c8c8dfb617a0adb91b5'
2009-10-07 11:33:22 +00:00
homepage 'http://www.audiocoding.com/faad2.html'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
2010-07-30 16:40:15 +00:00
man1.install man+'manm/faad.man' => 'faad.1'
2009-10-07 11:33:22 +00:00
end
end