diff options
| author | Jack Nagel | 2013-09-21 20:47:30 -0500 |
|---|---|---|
| committer | Jack Nagel | 2013-09-21 21:04:45 -0500 |
| commit | 2380e6fea248b2213713f7289c6d40da201a32b2 (patch) | |
| tree | 1f1325a5f7b4717ae2ef3515a5e33011719a1921 /Library/Formula | |
| parent | 8f4b5259d680b5604206aa8a4ef28e09fe5bcfe7 (diff) | |
| download | homebrew-2380e6fea248b2213713f7289c6d40da201a32b2.tar.bz2 | |
mu: use spec deps
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/mu.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/mu.rb b/Library/Formula/mu.rb index c06db86d3..c82dee3d5 100644 --- a/Library/Formula/mu.rb +++ b/Library/Formula/mu.rb @@ -16,7 +16,12 @@ class Mu < Formula url 'http://mu0.googlecode.com/files/mu-0.9.9.5.tar.gz' sha1 '825e3096e0763a12b8fdf77bd41625ee15ed09eb' - head 'https://github.com/djcb/mu.git' + head do + url 'https://github.com/djcb/mu.git' + + depends_on 'automake' => :build + depends_on 'libtool' => :build + end option 'with-emacs', 'Build with emacs support' @@ -27,11 +32,6 @@ class Mu < Formula depends_on 'xapian' depends_on Emacs23Installed if build.with? 'emacs' - if build.head? - depends_on 'automake' => :build - depends_on 'libtool' => :build - end - env :std if build.with? 'emacs' def install |
