aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/git-multipush.rb
blob: a65794ff7d9aab726b4ba51f8e1377aadc2d6b97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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