diff options
| author | Jack Nagel | 2013-09-21 20:47:26 -0500 | 
|---|---|---|
| committer | Jack Nagel | 2013-09-21 21:04:35 -0500 | 
| commit | dcee738e48c143819f5be79d6a25521b3983571e (patch) | |
| tree | 23ae19d28674813d8b3a9a1f024b82fbf866a5cd | |
| parent | 6a2e83bb09f5b7c6db10886870175001c26e6720 (diff) | |
| download | homebrew-dcee738e48c143819f5be79d6a25521b3983571e.tar.bz2 | |
mcabber: use spec deps
| -rw-r--r-- | Library/Formula/mcabber.rb | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/Library/Formula/mcabber.rb b/Library/Formula/mcabber.rb index cdcaa02ff..bb6609e24 100644 --- a/Library/Formula/mcabber.rb +++ b/Library/Formula/mcabber.rb @@ -5,7 +5,12 @@ class Mcabber < Formula    url 'http://mcabber.com/files/mcabber-0.10.2.tar.bz2'    sha1 '7bff70dcf09e8a8a4cc7219e03b48bad382a6bda' -  head 'http://mcabber.com/hg/', :using => :hg +  head do +    url 'http://mcabber.com/hg/', :using => :hg + +    depends_on :automake +    depends_on :libtool +  end    option 'enable-enchant', 'Enable spell checking support via enchant'    option 'enable-aspell', 'Enable spell checking support via aspell' @@ -20,11 +25,6 @@ class Mcabber < Formula    depends_on 'aspell' if build.include? 'enable-aspell'    depends_on 'enchant' if build.include? 'enable-enchant' -  if build.head? -    depends_on :automake -    depends_on :libtool -  end -    def install      if build.head?        ENV['LIBTOOLIZE'] = 'glibtoolize' | 
