diff options
| author | Ryan Schlesinger | 2012-04-26 10:13:17 -0700 | 
|---|---|---|
| committer | Adam Vandenberg | 2012-04-27 22:59:43 -0700 | 
| commit | a0bb48a7e1107baa7316867895e3576db8a8367d (patch) | |
| tree | fdc90719185aaa3779ecaf29d60febf1c4074927 /Library/Formula/mobile-shell.rb | |
| parent | d9764e126ba69da9a3202a51022c4f427649ae6e (diff) | |
| download | homebrew-a0bb48a7e1107baa7316867895e3576db8a8367d.tar.bz2 | |
mobile-shell 1.2 + HEAD
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/mobile-shell.rb')
| -rw-r--r-- | Library/Formula/mobile-shell.rb | 8 | 
1 files changed, 5 insertions, 3 deletions
diff --git a/Library/Formula/mobile-shell.rb b/Library/Formula/mobile-shell.rb index 0297eb42b..61efd9c64 100644 --- a/Library/Formula/mobile-shell.rb +++ b/Library/Formula/mobile-shell.rb @@ -2,14 +2,16 @@ require 'formula'  class MobileShell < Formula    homepage 'http://mosh.mit.edu/' -  url 'https://github.com/downloads/keithw/mosh/mosh-1.1.3.tar.gz' -  md5 'de507695b6f67523bc81596f97220a9a' +  url 'https://github.com/downloads/keithw/mosh/mosh-1.2.tar.gz' +  md5 '2822792d362cc1539278ca3d3afb279a'    head '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 if ARGV.build_head?    depends_on 'pkg-config' => :build    depends_on 'protobuf' -  depends_on 'boost'    def install      system "./autogen.sh" if ARGV.build_head?  | 
