homebrew-core/Formula/aacgain.rb
Adam Vandenberg 556d662b1f aacgain: correct version number to 1.8
The server responds to a request for a 1.9 tarball
with the source to 1.8, likely do to mod_speling being active.

Closes Homebrew/homebrew#16838.
2013-01-01 21:18:02 -08:00

13 lines
381 B
Ruby

require 'formula'
class Aacgain < Formula
homepage 'http://aacgain.altosdesign.com/'
url 'http://aacgain.altosdesign.com/alvarez/aacgain-1.8.tar.bz2'
sha1 '331039c4231e4d85ae878795ce3095dd96dcbfdb'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end