diff options
| author | Josh Delsman | 2011-09-18 10:50:07 +0800 |
|---|---|---|
| committer | Adam Vandenberg | 2011-11-27 12:02:38 -0800 |
| commit | 391bc95c6565b136ca6027f655ea9e90c67b28cb (patch) | |
| tree | b6644aa6fd56870a5b70726f1cf20fe5a0c52e6f | |
| parent | cbb244e0dc7d1a227d88680aa4e2d9d03839f2b3 (diff) | |
| download | homebrew-391bc95c6565b136ca6027f655ea9e90c67b28cb.tar.bz2 | |
ezstream 0.5.6
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/ezstream.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/ezstream.rb b/Library/Formula/ezstream.rb new file mode 100644 index 000000000..32f366301 --- /dev/null +++ b/Library/Formula/ezstream.rb @@ -0,0 +1,19 @@ +require 'formula' + +class Ezstream < Formula + url 'http://downloads.xiph.org/releases/ezstream/ezstream-0.5.6.tar.gz' + homepage 'http://www.icecast.org/ezstream.php' + md5 '1be68119d44fbe71454a901fa650a359' + + depends_on 'libvorbis' + depends_on 'libshout' + depends_on 'theora' + depends_on 'speex' + depends_on 'libogg' + + def install + system "./configure", "--disable-debug", "--disable-dependency-tracking", + "--prefix=#{prefix}" + system "make install" + end +end |
