blob: 46defd041312db14760cbfbd714d3163622ff994 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
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
|