diff options
| author | Jack Nagel | 2014-12-08 00:50:38 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-12-08 01:20:30 -0500 |
| commit | 566cee99210bf9d2503e39c7afa7e59e7f91e251 (patch) | |
| tree | fe1ac1bb871d78d12ff5e95ca7e56122d397c521 /Library/Formula | |
| parent | 0384a7f141b58794bda8e7d2e0bad083c92d7a4d (diff) | |
| download | homebrew-566cee99210bf9d2503e39c7afa7e59e7f91e251.tar.bz2 | |
mercurial 3.2.2
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/mercurial.rb | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/Library/Formula/mercurial.rb b/Library/Formula/mercurial.rb index 811da306d..fae374987 100644 --- a/Library/Formula/mercurial.rb +++ b/Library/Formula/mercurial.rb @@ -1,17 +1,13 @@ -require 'formula' +require "formula" # No head build supported; if you need head builds of Mercurial, do so outside # of Homebrew. class Mercurial < Formula - homepage 'http://mercurial.selenic.com/' - url 'http://mercurial.selenic.com/release/mercurial-3.2.1.tar.gz' - sha1 '85463d7796ed44fb08b9d8d66e1390e92c3399ef' + homepage "http://mercurial.selenic.com/" + url "http://mercurial.selenic.com/release/mercurial-3.2.2.tar.gz" + sha1 "a8a51aa412abd5155c7de29fd39c9774decb4d3f" bottle do - cellar :any - sha1 "9daa693a504f29da9ccd03863523dfa4b70e71fb" => :yosemite - sha1 "b720d9883ff7493a318d3296690bc5a9afd3c577" => :mavericks - sha1 "77804e4b1feee3b08225c37da0bb79665884fc23" => :mountain_lion end def install @@ -19,12 +15,12 @@ class Mercurial < Formula system "make", "PREFIX=#{prefix}", "install-bin" # Install man pages, which come pre-built in source releases - man1.install 'doc/hg.1' - man5.install 'doc/hgignore.5', 'doc/hgrc.5' + man1.install "doc/hg.1" + man5.install "doc/hgignore.5", "doc/hgrc.5" # install the completion scripts - bash_completion.install 'contrib/bash_completion' => 'hg-completion.bash' - zsh_completion.install 'contrib/zsh_completion' => '_hg' + bash_completion.install "contrib/bash_completion" => "hg-completion.bash" + zsh_completion.install "contrib/zsh_completion" => "_hg" # install the merge tool default configs # http://mercurial.selenic.com/wiki/Packaging#Things_to_note |
