2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-10-07 12:28:37 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Faac < Formula
|
2013-01-27 23:06:34 +00:00
|
|
|
homepage 'http://www.audiocoding.com/faac.html'
|
2014-02-27 14:19:55 +00:00
|
|
|
url 'https://downloads.sourceforge.net/project/faac/faac-src/faac-1.28/faac-1.28.tar.gz'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 'd00b023a3642f81bb1fb13d962a65079121396ee'
|
2009-10-07 12:28:37 +00:00
|
|
|
|
2014-02-22 17:34:43 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
|
|
|
sha1 "923f62ca1292dcf930a4def01da662d5facf3b87" => :mavericks
|
|
|
|
sha1 "aab2425c764152a2f4ea7eb99072153d1eed1654" => :mountain_lion
|
|
|
|
sha1 "88bd2a82586156372015b7a884809a2d14d127cb" => :lion
|
|
|
|
end
|
|
|
|
|
2009-10-07 12:28:37 +00:00
|
|
|
def install
|
2013-01-27 23:06:34 +00:00
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
2009-10-07 12:28:37 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|