homebrew-core/Formula/faad2.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

21 lines
752 B
Ruby

class Faad2 < Formula
desc "ISO AAC audio decoder"
homepage "http://www.audiocoding.com/faad2.html"
url "https://downloads.sourceforge.net/project/faac/faad2-src/faad2-2.7/faad2-2.7.tar.bz2"
sha256 "14561b5d6bc457e825bfd3921ae50a6648f377a9396eaf16d4b057b39a3f63b5"
bottle do
cellar :any
revision 1
sha1 "39cc3707e90db859db8cb135ccd7080f9c304459" => :yosemite
sha1 "04c2c277cfd485ccf2741e0655d80f5e15cf8cd3" => :mavericks
sha1 "08c8bc69ca372e20e233da8deabd5367ea0f345d" => :mountain_lion
end
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
man1.install man+"manm/faad.man" => "faad.1"
end
end