homebrew-core/Formula/tta.rb
Miguel Araújo 88f03109a2 tta: fix audit warning
* Description shouldn't include the formula name

Closes #4152.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2016-08-23 14:41:34 +01:00

22 lines
875 B
Ruby

class Tta < Formula
desc "Lossless audio codec"
homepage "http://www.true-audio.com"
url "https://downloads.sourceforge.net/project/tta/tta/libtta/libtta-2.2.tar.gz"
sha256 "1723424d75b3cda907ff68abf727bb9bc0c23982ea8f91ed1cc045804c1435c4"
bottle do
cellar :any_skip_relocation
sha256 "0543d1561fe44fc6137f90076d247f16e6ac28e72413a7ba3bac08d422bb4e9c" => :el_capitan
sha256 "e25b0a3c395c62d2cb130f4817e405a9e09494c92c17fc71bf123d72b6da5f06" => :yosemite
sha256 "1b4bdda9786729fffe279cd17faea744108198064d2effcc42b078eb85862671" => :mavericks
end
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}",
"--enable-sse4"
system "make", "install"
end
end