homebrew-core/Formula/libshout.rb

20 lines
503 B
Ruby
Raw Normal View History

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'
2010-07-25 19:33:35 +00:00
depends_on 'theora' => :optional
depends_on 'speex' => :optional
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end