diff options
| author | Chilledheart | 2014-10-12 12:26:10 +0800 |
|---|---|---|
| committer | Jack Nagel | 2014-10-16 22:41:35 -0500 |
| commit | 56d800d115bdc2aec6266e08d91066352d369492 (patch) | |
| tree | 3b355f9be14769ee91988d669c18b2a51e637031 /Library/Formula | |
| parent | 0f15e501615a3ac1b1848662f0d1901dcc532393 (diff) | |
| download | homebrew-56d800d115bdc2aec6266e08d91066352d369492.tar.bz2 | |
mosh: replace single quotes to double quotes
following the latest standard of homebrew
and in additional, use "make", "install" to replace "make install"
Closes #33095.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/mobile-shell.rb | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/Library/Formula/mobile-shell.rb b/Library/Formula/mobile-shell.rb index 25b4e4226..7e821547c 100644 --- a/Library/Formula/mobile-shell.rb +++ b/Library/Formula/mobile-shell.rb @@ -1,21 +1,21 @@ -require 'formula' +require "formula" class MobileShell < Formula - homepage 'http://mosh.mit.edu/' - url 'http://mosh.mit.edu/mosh-1.2.4.tar.gz' - sha1 'b1dffe8562d7b2f4956699849fbe5d18bfd7749e' + homepage "http://mosh.mit.edu/" + url "http://mosh.mit.edu/mosh-1.2.4.tar.gz" + sha1 "b1dffe8562d7b2f4956699849fbe5d18bfd7749e" revision 2 head do - url 'https://github.com/keithw/mosh.git' + url "https://github.com/keithw/mosh.git" - depends_on 'autoconf' => :build - depends_on 'automake' => :build + depends_on "autoconf" => :build + depends_on "automake" => :build end - depends_on 'openssl' - depends_on 'pkg-config' => :build - depends_on 'protobuf' + depends_on "openssl" + depends_on "pkg-config" => :build + depends_on "protobuf" def install system "./autogen.sh" if build.head? @@ -28,6 +28,6 @@ class MobileShell < Formula # https://github.com/keithw/mosh/blob/master/README.md ENV.O2 system "./configure", "--prefix=#{prefix}", "--enable-completion" - system "make install" + system "make", "install" end end |
