blob: 13c265e1cec0b9c79e6250b9d94255525b7b979e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
  | 
require 'formula'
class Libvorbis < Formula
  homepage 'http://vorbis.com'
  url 'http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.4.tar.xz'
  sha1 'b99724acdf3577982b3146b9430d765995ecf9e1'
  bottle do
    cellar :any
    sha1 "5888cafaeb4bb6001a24ceab46d993f104b0adc3" => :mavericks
    sha1 "72fe81e0d9b761954c059e6a5bdd73379eecc33e" => :mountain_lion
    sha1 "49865744038d60add35f19e123a43c3cce6b30f8" => :lion
  end
  head do
    url 'http://svn.xiph.org/trunk/vorbis'
    depends_on "autoconf" => :build
    depends_on "automake" => :build
    depends_on "libtool" => :build
  end
  option :universal
  depends_on 'pkg-config' => :build
  depends_on 'libogg'
  def install
    ENV.universal_binary if build.universal?
    system "./autogen.sh" if build.head?
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end
  |