aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorKieran Pilkington2009-10-12 15:30:44 +1300
committerMax Howell2009-10-12 17:24:21 +0100
commit25978bf8211385e24bc06051372bace4ad6328ee (patch)
tree5c8869662785e476cf8d21f44e38fead9dce6a2d /Library/Formula
parentf2020a97b034c93a2062718ac80c03e06a326dc3 (diff)
downloadhomebrew-25978bf8211385e24bc06051372bace4ad6328ee.tar.bz2
Speex formula
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/speex.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/speex.rb b/Library/Formula/speex.rb
new file mode 100644
index 000000000..fe2cd6b3b
--- /dev/null
+++ b/Library/Formula/speex.rb
@@ -0,0 +1,12 @@
+require 'brewkit'
+
+class Speex <Formula
+ url 'http://downloads.us.xiph.org/releases/speex/speex-1.0.5.tar.gz'
+ homepage 'http://speex.org'
+ md5 '01d6a2de0a88a861304bf517615dea79'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "make install"
+ end
+end