tta 2.2
Closes Homebrew/homebrew#28786. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
e50b2c5c13
commit
1ce42a820a
1 changed files with 16 additions and 0 deletions
16
Formula/tta.rb
Normal file
16
Formula/tta.rb
Normal file
|
@ -0,0 +1,16 @@
|
|||
require "formula"
|
||||
|
||||
class Tta < Formula
|
||||
homepage "http://www.true-audio.com"
|
||||
url "https://downloads.sourceforge.net/project/tta/tta/libtta/libtta-2.2.tar.gz"
|
||||
sha1 "8d57bcad7ec22a83302080579bc96e49fec0f093"
|
||||
|
||||
def install
|
||||
system "./configure", "--disable-debug",
|
||||
"--disable-dependency-tracking",
|
||||
"--disable-silent-rules",
|
||||
"--prefix=#{prefix}",
|
||||
"--enable-sse4"
|
||||
system "make", "install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue