aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libshout.rb
diff options
context:
space:
mode:
authorDavid Höppner2010-01-10 20:01:08 +0100
committerDavid Höppner2010-01-30 14:18:05 +0100
commit415de9533cb51b9f364960187c4edaeb1dc98927 (patch)
tree059ac5c89eea8c77ab80af7b0b04831dbc63d844 /Library/Formula/libshout.rb
parent715c9d1d59f6154aa881d1ab9965ad9c986bc0d5 (diff)
downloadhomebrew-415de9533cb51b9f364960187c4edaeb1dc98927.tar.bz2
Icecast libshout
Library which can be used to write a source client like ices.
Diffstat (limited to 'Library/Formula/libshout.rb')
-rw-r--r--Library/Formula/libshout.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/libshout.rb b/Library/Formula/libshout.rb
new file mode 100644
index 000000000..599f4b9d7
--- /dev/null
+++ b/Library/Formula/libshout.rb
@@ -0,0 +1,19 @@
+require 'formula'
+
+class Libshout <Formula
+ url 'http://downloads.us.xiph.org/releases/libshout/libshout-2.2.2.tar.gz'
+ homepage 'http://www.icecast.org/'
+ md5 '4f75fc9901c724b712c371c9a1e782d3'
+
+ depends_on 'theora' => :optional
+ depends_on 'speex' => :optional
+
+ depends_on 'pkg-config'
+ depends_on 'libogg'
+ depends_on 'libvorbis'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "make install"
+ end
+end