aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libvorbis.rb
diff options
context:
space:
mode:
authorJack Nagel2013-09-21 20:47:24 -0500
committerJack Nagel2013-09-21 20:47:24 -0500
commit73ca3042ba2b8f17e7a178c09e486ec112de4178 (patch)
tree50bd7e618388aeefa758a531f95d4b398ea0e2fc /Library/Formula/libvorbis.rb
parentb9a6c6c92d560653634231eebd254c163bc7c54e (diff)
downloadhomebrew-73ca3042ba2b8f17e7a178c09e486ec112de4178.tar.bz2
libvorbis: use spec deps
Diffstat (limited to 'Library/Formula/libvorbis.rb')
-rw-r--r--Library/Formula/libvorbis.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/Library/Formula/libvorbis.rb b/Library/Formula/libvorbis.rb
index 835a0c30f..90be00602 100644
--- a/Library/Formula/libvorbis.rb
+++ b/Library/Formula/libvorbis.rb
@@ -5,7 +5,13 @@ class Libvorbis < Formula
url 'http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.3.tar.xz'
sha1 '31d1a0ec4815bf1ee638b0f2850f03efcd48022a'
- head 'http://svn.xiph.org/trunk/vorbis'
+ head do
+ url 'http://svn.xiph.org/trunk/vorbis'
+
+ depends_on :autoconf
+ depends_on :automake
+ depends_on :libtool
+ end
option :universal
@@ -13,12 +19,6 @@ class Libvorbis < Formula
depends_on 'pkg-config' => :build
depends_on 'libogg'
- if build.head?
- depends_on :autoconf
- depends_on :automake
- depends_on :libtool
- end
-
def install
ENV.universal_binary if build.universal?