2010-01-10 18:45:51 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Icecast < Formula
|
2010-01-10 18:45:51 +00:00
|
|
|
homepage 'http://www.icecast.org/'
|
2012-07-29 16:16:22 +00:00
|
|
|
url 'http://downloads.xiph.org/releases/icecast/icecast-2.3.3.tar.gz'
|
|
|
|
sha1 '61cf1bd5b4ed491aad488dc6cf1ca2d8eb657363'
|
2010-01-10 18:45:51 +00:00
|
|
|
|
2012-07-29 16:16:22 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2010-01-10 18:45:51 +00:00
|
|
|
depends_on 'libogg' => :optional
|
|
|
|
depends_on 'theora' => :optional
|
|
|
|
depends_on 'speex' => :optional
|
|
|
|
|
|
|
|
depends_on 'libvorbis'
|
|
|
|
|
|
|
|
def install
|
2012-07-29 16:16:22 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
2010-01-10 18:45:51 +00:00
|
|
|
system "make install"
|
|
|
|
|
2010-03-07 06:27:19 +00:00
|
|
|
(prefix+'var/log/icecast').mkpath
|
|
|
|
touch prefix+'var/log/icecast/error.log'
|
2010-01-10 18:45:51 +00:00
|
|
|
end
|
|
|
|
end
|