26 lines
879 B
Ruby
26 lines
879 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
|
|
sha256 "d698606ddbd579700df1525f9fd7987b0aa6c9e8228e2a9a7346e606bee68f6e" => :el_capitan
|
|
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
|