diff options
| author | Jack Nagel | 2013-09-21 19:27:25 -0500 | 
|---|---|---|
| committer | Jack Nagel | 2013-09-21 19:27:25 -0500 | 
| commit | c80b9aa6002f7632001a24b6e7744fc262cdaba4 (patch) | |
| tree | 977e8f2e85654dcfc4c190457bc48a3ad454ab7d | |
| parent | c596bc756744e045440235fa2c523d2fb62f7135 (diff) | |
| download | homebrew-c80b9aa6002f7632001a24b6e7744fc262cdaba4.tar.bz2 | |
mobile-shell: use spec deps
| -rw-r--r-- | Library/Formula/mobile-shell.rb | 13 | 
1 files changed, 8 insertions, 5 deletions
diff --git a/Library/Formula/mobile-shell.rb b/Library/Formula/mobile-shell.rb index d95d9030f..dab76bb18 100644 --- a/Library/Formula/mobile-shell.rb +++ b/Library/Formula/mobile-shell.rb @@ -5,12 +5,15 @@ class MobileShell < Formula    url 'http://mosh.mit.edu/mosh-1.2.4.tar.gz'    sha1 'b1dffe8562d7b2f4956699849fbe5d18bfd7749e' -  head 'https://github.com/keithw/mosh.git' +  head do +    url 'https://github.com/keithw/mosh.git' + +    # Needs new autoconf for correct AC_C_RESTRICT macro +    # See: https://github.com/keithw/mosh/issues/241 +    depends_on 'autoconf' => :build +    depends_on 'automake' => :build +  end -  # Needs new autoconf for correct AC_C_RESTRICT macro -  # See: https://github.com/keithw/mosh/issues/241 -  depends_on 'autoconf' => :build if build.head? -  depends_on 'automake' => :build if build.head?    depends_on 'pkg-config' => :build    depends_on 'protobuf'  | 
