543ea62c59
- When yajl is installed, the build system manages to find it even under superenv, so explicitly disable this option unless requested - Future-proof finding faad2 in non-/usr/local installs - Fix libshout deps
18 lines
463 B
Ruby
18 lines
463 B
Ruby
require 'formula'
|
|
|
|
class Libshout < Formula
|
|
homepage 'http://www.icecast.org/'
|
|
url 'http://downloads.xiph.org/releases/libshout/libshout-2.3.1.tar.gz'
|
|
sha1 '147c5670939727420d0e2ad6a20468e2c2db1e20'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'libogg'
|
|
depends_on 'libvorbis'
|
|
depends_on 'theora'
|
|
depends_on 'speex'
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|