homebrew-core/Formula/opus.rb
Stefan f94d8b6704 opus 1.0.3
Closes Homebrew/homebrew#21493.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-07-28 11:40:25 -05:00

21 lines
523 B
Ruby

require 'formula'
class Opus < Formula
homepage 'http://www.opus-codec.org'
url 'http://downloads.xiph.org/releases/opus/opus-1.0.3.tar.gz'
sha1 '5781bdd009943deb55a742ac99db20a0d4e89c1e'
head 'https://git.xiph.org/opus.git'
if build.head?
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