aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/aacgain.rb
blob: 7546f5787f343d5a9d90dc13091607c3c2edb92f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

class Aacgain < Formula
  homepage 'http://aacgain.altosdesign.com/'
  # 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/Homebrew/homebrew/issues/16838
  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