aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libvorbis.rb
diff options
context:
space:
mode:
authorMax Howell2009-06-18 09:53:36 +0100
committerMax Howell2009-06-18 10:34:43 +0100
commit7a0aede96287c1bda17a61b0626e9ce45a29ab59 (patch)
tree78ffc6c0c86d7f286183dc15a73fac7cded55da3 /Library/Formula/libvorbis.rb
parent14d729a23c17640f4c28c307b5d6fb69d9711a25 (diff)
downloadhomebrew-7a0aede96287c1bda17a61b0626e9ce45a29ab59.tar.bz2
libvorbis formula
Diffstat (limited to 'Library/Formula/libvorbis.rb')
-rw-r--r--Library/Formula/libvorbis.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/libvorbis.rb b/Library/Formula/libvorbis.rb
new file mode 100644
index 000000000..30ff4307e
--- /dev/null
+++ b/Library/Formula/libvorbis.rb
@@ -0,0 +1,16 @@
+require 'brewkit'
+
+class Libvorbis <Formula
+ @url='http://downloads.xiph.org/releases/vorbis/libvorbis-1.2.2rc1.tar.bz2'
+ @md5='6a7086ee666b8c62e122d29d107f7bec'
+ @homepage='http://vorbis.com'
+
+ def deps
+ test_lib 'ogg'
+ end
+
+ def install
+ system "./configure --enable-docs --disable-debug --disable-dependency-tracking --prefix='#{prefix}'"
+ system "make install"
+ end
+end \ No newline at end of file