homebrew-core/Formula/libshout.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

25 lines
786 B
Ruby

class Libshout < Formula
desc "Data and connectivity library for the icecast server"
homepage "http://www.icecast.org/"
url "http://downloads.xiph.org/releases/libshout/libshout-2.3.1.tar.gz"
sha256 "cf3c5f6b4a5e3fcfbe09fb7024aa88ad4099a9945f7cb037ec06bcee7a23926e"
bottle do
cellar :any
revision 1
sha1 "2930b7d9284829191c5ebbcbda184654b215a12b" => :yosemite
sha1 "6e72e6169d9e0b332135e4b123b0989cea80ee7a" => :mavericks
sha1 "946c3352ba99927dcb798c44b77928128fffd653" => :mountain_lion
end
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