2010-03-12 01:17:12 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Aacgain < Formula
|
2012-07-26 05:38:15 +00:00
|
|
|
homepage 'http://aacgain.altosdesign.com/'
|
2013-01-20 17:31:19 +00:00
|
|
|
# This server will autocorrect a 1.9 url back to this 1.8 tarball.
|
|
|
|
# The 1.9 version mentioned on the website is pre-release, so make
|
|
|
|
# sure 1.9 is actually out before updating.
|
|
|
|
# See: https://github.com/mxcl/homebrew/issues/16838
|
|
|
|
url 'http://aacgain.altosdesign.com/alvarez/aacgain-1.8.tar.bz2'
|
2012-07-26 05:38:15 +00:00
|
|
|
sha1 '331039c4231e4d85ae878795ce3095dd96dcbfdb'
|
2010-03-12 01:17:12 +00:00
|
|
|
|
|
|
|
def install
|
2012-07-26 05:38:15 +00:00
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
2010-03-12 01:17:12 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|