aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosh Delsman2011-09-18 10:50:07 +0800
committerAdam Vandenberg2011-11-27 12:02:38 -0800
commit391bc95c6565b136ca6027f655ea9e90c67b28cb (patch)
treeb6644aa6fd56870a5b70726f1cf20fe5a0c52e6f
parentcbb244e0dc7d1a227d88680aa4e2d9d03839f2b3 (diff)
downloadhomebrew-391bc95c6565b136ca6027f655ea9e90c67b28cb.tar.bz2
ezstream 0.5.6
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/ezstream.rb19
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