homebrew-core/Formula/hg-flow.rb
Samuel John 98ee8f140a hg-flow: 0.4
* depends_on :python
* Install hgflow.py into `python.site_packages`
* Use default branch for --HEAD
* Work around naming bug for 0.4 download
* Update caveats (`hgflow=` is enough)
2013-06-07 17:58:56 +02:00

34 lines
913 B
Ruby

require 'formula'
class HgFlow < Formula
homepage 'https://bitbucket.org/yinwm/hgflow'
url 'https://bitbucket.org/yinwm/hgflow/downloads/hgflow-v0.4.pyhgflow-v0.4.py'
sha1 '517a4e42b7a7ed68140903d4687180aa175aa3ef'
head "http://bitbucket.org/yinwm/hgflow", :using => :hg, :branch => 'default'
depends_on :python
def install
if build.head?
python do
cd 'src/hgflow'
system python, 'setup.py', 'install', "--prefix=#{prefix}"
end
else
# That strange name seems like a bug. https://bitbucket.org/yinwm/hgflow/issue/24
python.site_packages.install 'hgflow-v0.4.pyhgflow-v0.4.py' => '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 http://bitbucket.org/yinwm/hgflow
[extensions]
hgflow=
EOS
end
end