2012-03-12 19:04:45 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class MobileShell < Formula
|
|
|
|
homepage 'http://mosh.mit.edu/'
|
2012-04-09 23:48:28 +00:00
|
|
|
url 'https://github.com/downloads/keithw/mosh/mosh-1.1.3.tar.gz'
|
|
|
|
md5 'de507695b6f67523bc81596f97220a9a'
|
2012-03-12 19:04:45 +00:00
|
|
|
|
|
|
|
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
|