blob: e0e6cf89cc21de1d204b2e543770dcddba19193b (
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.5.tar.xz'
  sha256 '54f94a9527ff0a88477be0a71c0bab09a4c3febe0ed878b24824906cd4b0e1d1'
  bottle do
    cellar :any
    sha1 "241550d9dc1c52eecfe2ca63d8609c1e8cf4d5fb" => :yosemite
    sha1 "b216293debbca8baa7bfa848b81cb07e664be847" => :mavericks
    sha1 "44ac5cf5991f063d5ed105379fceb84cd1ef8330" => :mountain_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
 |