Files
chromebrew/packages/mosh.rb
Nicholas Chambers 1a6cd40c1f (accidentally dropped the packages in project $ROOT)
* added mutt client for #132. Currently, `make install` ignores errors,
  since it tries to install to /usr/local/share/man/man5 which is owned
  by root.

* added google protobuf (needed by mosh client)

* added mosh for #63. Although it is provided natively via
  https://chrome.google.com/webstore/detail/mosh/ooiklbnjmhbcgemelgfhaeaocllobloj

* added boost v1.59.0 needed by MySQL (yet to be built)

* added apache httpd for #615. Currently, `make install` ignores errors,
  since it tries to install to /usr/local/share/man/man8 which is owned by
  root.
2017-05-03 20:40:19 -05:00

19 lines
333 B
Ruby

require 'package'
class Mosh < Package
version '1.3.0'
source_url 'https://mosh.org/mosh-1.3.0.tar.gz'
source_sha1 '846698806d940c84028c04f68e289e31d9540d5f'
depends_on 'protobuf'
def self.build
system './configure --prefix=/usr/local'
system 'make'
end
def self.install
system 'make install'
end
end