homebrew-core/Formula/git-multipush.rb

22 lines
706 B
Ruby
Raw Normal View History

2011-03-10 05:11:03 +00:00
class GitMultipush < Formula
desc "Push a branch to multiple remotes in one command"
homepage "https://code.google.com/p/git-multipush/"
url "https://git-multipush.googlecode.com/files/git-multipush-2.3.tar.bz2"
sha256 "1f3b51e84310673045c3240048b44dd415a8a70568f365b6b48e7970afdafb67"
devel do
url "https://github.com/gavinbeatty/git-multipush/archive/git-multipush-v2.4.rc2.tar.gz"
sha256 "999d9304f322c1b97d150c96be64ecde30980f97eaaa9d66f365b8b11894c46d"
version "2.4-rc2"
2013-09-21 23:33:42 +00:00
end
head "https://github.com/gavinbeatty/git-multipush.git"
depends_on "asciidoc" => :build
def install
2015-02-14 21:32:24 +00:00
system "make" if build.head?
system "make", "prefix=#{prefix}", "install"
end
end