blob: 5c361e02cd9756d4c579691527a9c02e533a1d07 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 | require 'formula'
class Libshout < Formula
  url 'http://downloads.us.xiph.org/releases/libshout/libshout-2.2.2.tar.gz'
  homepage 'http://www.icecast.org/'
  md5 '4f75fc9901c724b712c371c9a1e782d3'
  depends_on 'pkg-config' => :build
  depends_on 'libogg'
  depends_on 'libvorbis'
  depends_on 'theora' => :optional
  depends_on 'speex'  => :optional
  def install
    system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
    system "make install"
  end
end
 |