homebrew-core/Formula/hg-flow.rb

45 lines
1.1 KiB
Ruby

class HgFlow < Formula
desc "Development model for mercurial inspired by git-flow"
homepage "https://bitbucket.org/yujiewu/hgflow"
url "https://bitbucket.org/yujiewu/hgflow/downloads/hgflow-v0.9.8.1.tar.bz2"
sha256 "aa49cf68ea8e0002be9ca6478daa7392d89113e985631316cab75e87d62d211c"
head "https://bitbucket.org/yujiewu/hgflow", :using => :hg, :branch => "develop"
bottle :unneeded
depends_on :python if MacOS.version <= :snow_leopard
depends_on :hg
def install
if build.head?
libexec.install "src/hgflow.py" => "hgflow.py"
else
libexec.install "hgflow.py"
end
end
def caveats; <<-EOS.undent
1. Put following lines into your ~/.hgrc
2. Restart your shell and try "hg flow".
3. For more information go to https://bitbucket.org/yinwm/hgflow
[extensions]
flow = #{opt_libexec}/hgflow.py
[flow]
autoshelve = true
EOS
end
test do
(testpath/".hgrc").write <<-EOS.undent
[extensions]
flow = #{opt_libexec}/hgflow.py
[flow]
autoshelve = true
EOS
system "hg", "init"
system "hg", "flow", "init", "-d"
end
end