aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authornibbles 2bits2012-06-14 01:31:09 -0700
committerJack Nagel2012-06-14 17:03:05 -0500
commitf188dbc7acc139f1338fadeeb1aae0b1075adeb6 (patch)
tree5fb6ca55de5508ad3e03cdce0d4d608517002dc8 /Library
parentf04d94f37c6d4841e1f221c1bc510ecdaabfe6c9 (diff)
downloadhomebrew-f188dbc7acc139f1338fadeeb1aae0b1075adeb6.tar.bz2
libvorbis 1.3.3
Upgrade libvorbis to version 1.3.3. Add the build time dep on `xz` because that's the only tarball. Remove the unrecognized `--disable-debug` flag. Tested on Lion with clang and llvm-gcc from XCode-4.3.3. Closes #12833. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/libvorbis.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/Library/Formula/libvorbis.rb b/Library/Formula/libvorbis.rb
index 5234c8e90..1205ee1b0 100644
--- a/Library/Formula/libvorbis.rb
+++ b/Library/Formula/libvorbis.rb
@@ -1,12 +1,13 @@
require 'formula'
class Libvorbis < Formula
- url 'http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.2.tar.bz2'
- md5 '798a4211221073c1409f26eac4567e8b'
homepage 'http://vorbis.com'
+ url 'http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.3.tar.xz'
+ sha1 '31d1a0ec4815bf1ee638b0f2850f03efcd48022a'
head 'http://svn.xiph.org/trunk/vorbis'
+ depends_on 'xz' => :build
depends_on 'pkg-config' => :build
depends_on 'libogg'
@@ -24,8 +25,7 @@ class Libvorbis < Formula
system "./autogen.sh"
end
- system "./configure", "--disable-debug", "--disable-dependency-tracking",
- "--prefix=#{prefix}"
+ system './configure', "--prefix=#{prefix}", '--disable-dependency-tracking'
system "make install"
end
end