aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/opus.rb
blob: b808acb7febdbf899283fb1e10572af0842dfaa8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'formula'

class Opus < Formula
  homepage 'http://www.opus-codec.org'
  url 'http://downloads.xiph.org/releases/opus/opus-1.0.2.tar.gz'
  sha1 '37dd3d69b10612cd513ccf26675ef6d61eda24b4'

  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