homebrew-core/Formula/git-multipush.rb
Caius Durling b201a50a54 Removing git-multipush's dependency on git.
git may already be installed on developer's macs, so no need to reinstall it through homebrew.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-06-23 09:25:17 -07:00

14 lines
382 B
Ruby

require 'formula'
class GitMultipush <Formula
url 'http://git-multipush.googlecode.com/files/git-multipush-1.0.tar.bz2'
homepage 'http://code.google.com/p/git-multipush/'
md5 'ca809d24857c5abe92f870f3a4f2ebe5'
# Not depending on git because people might have it
# installed through another means
def install
system "make", "prefix=#{prefix}", "install"
end
end