homebrew-core/Formula/mobile-shell.rb
seph 4756a71f05 mobile-shell 1.0
Closes Homebrew/homebrew#10911.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-03-17 08:37:12 -07:00

23 lines
556 B
Ruby

require 'formula'
class MobileShell < Formula
homepage 'http://mosh.mit.edu/'
url 'https://github.com/downloads/keithw/mosh/mosh-1.0.tar.gz'
md5 'c53723f8579789adf535215dfd5e562a'
head 'https://github.com/keithw/mosh.git'
depends_on 'pkg-config' => :build
depends_on 'protobuf'
depends_on 'boost'
def install
system "./autogen.sh" if ARGV.build_head?
# Upstream prefers O2:
# https://github.com/keithw/mosh/blob/master/README.md
ENV.O2
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end