aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDavid Conrad2009-10-06 02:06:05 -0400
committerMax Howell2009-10-09 00:53:52 +0100
commitffec849b05989358be3fc356dc6302cd464aab55 (patch)
tree8a9ddf8ad7cbc62578eace39386cc0c278dbb797 /Library/Formula
parent3e5e29ab7481b3259ebb23980351adfef2e16309 (diff)
downloadhomebrew-ffec849b05989358be3fc356dc6302cd464aab55.tar.bz2
Oggz formula
Signed-off-by: Max Howell <max@methylblue.com> The formula was committed as liboggz.rb, but the homepage is consistent in calling it Oggz so I renamed the formula.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/oggz.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/oggz.rb b/Library/Formula/oggz.rb
new file mode 100644
index 000000000..a53a3436f
--- /dev/null
+++ b/Library/Formula/oggz.rb
@@ -0,0 +1,16 @@
+require 'brewkit'
+
+# TODO alias: liboggz
+
+class Oggz <Formula
+ url 'http://downloads.xiph.org/releases/liboggz/liboggz-1.0.0.tar.gz'
+ md5 '57359f6f0824b3e9bad85b49a6418514'
+ homepage 'http://www.xiph.org/oggz/'
+
+ depends_on 'libogg'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "make install"
+ end
+end