homebrew-core/Formula/hubflow.rb
Sander Bouwhuis 8c8e187daa hubflow 1.5.2
Closes Homebrew/homebrew#22962.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-10-01 11:21:49 +01:00

17 lines
387 B
Ruby

require 'formula'
# Note: pull from git tag to get submodules
class Hubflow < Formula
homepage 'http://datasift.github.io/gitflow/'
url 'https://github.com/datasift/gitflow.git', :tag => '1.5.2'
def install
ENV['INSTALL_INTO'] = libexec
system "./install.sh", "install"
bin.write_exec_script libexec/'git-hf'
end
test do
system "git-hf", "version"
end
end