homebrew-core/Formula/opus.rb

30 lines
776 B
Ruby

require 'formula'
class Opus < Formula
homepage 'http://www.opus-codec.org'
url 'http://downloads.xiph.org/releases/opus/opus-1.1.tar.gz'
sha1 '35005f5549e2583f5770590135984dcfce6f3d58'
bottle do
cellar :any
sha1 "5fb89890cfc8c254a6f13f9657a66da385887b2b" => :yosemite
sha1 "8ac2e93276b0df2f69c01d0b727fbff57a637e9e" => :mavericks
sha1 "a7e6ed2455861c41e021fec280b6fa28462341a2" => :mountain_lion
end
head do
url 'https://git.xiph.org/opus.git'
depends_on :autoconf
depends_on :automake
depends_on :libtool
end
def install
system "./autogen.sh" if build.head?
system "./configure", "--disable-dependency-tracking", "--disable-doc",
"--prefix=#{prefix}"
system "make install"
end
end