homebrew-core/Formula/faad2.rb

23 lines
845 B
Ruby
Raw Normal View History

2011-03-10 05:11:03 +00:00
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"
2009-10-07 11:33:22 +00:00
2014-06-09 16:05:56 +00:00
bottle do
cellar :any
2014-10-22 01:39:08 +00:00
revision 1
2015-09-22 22:39:02 +00:00
sha256 "ded931642921a5e0d236237ce046f883aa96a0e5bfe67f5d437ee31f10b5f3d1" => :el_capitan
2014-10-22 01:39:08 +00:00
sha1 "39cc3707e90db859db8cb135ccd7080f9c304459" => :yosemite
sha1 "04c2c277cfd485ccf2741e0655d80f5e15cf8cd3" => :mavericks
sha1 "08c8bc69ca372e20e233da8deabd5367ea0f345d" => :mountain_lion
2014-06-09 16:05:56 +00:00
end
2009-10-07 11:33:22 +00:00
def install
2013-01-27 23:06:54 +00:00
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
man1.install man+"manm/faad.man" => "faad.1"
2009-10-07 11:33:22 +00:00
end
end