homebrew-core/Formula/celt.rb
Justin Clift 2c200190d8 Updated formula: celt
Updated to newer upstream 0.8.1 release, the latest that compiles on OSX.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-01-25 09:45:17 -08:00

18 lines
534 B
Ruby

require 'formula'
class Celt <Formula
url 'http://downloads.xiph.org/releases/celt/celt-0.8.1.tar.gz'
homepage 'http://www.celt-codec.org/'
sha256 'cbaa8d2ba4d4807f29a5ed40b9f2be233f988c6e3ac8dd1737b6e2ac20174542'
depends_on 'libogg' => :optional
def install
fails_with_llvm "1 test failed with llvm-gcc"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-new-plc"
system "make check"
system "make install"
end
end