diff options
| author | Caius Durling | 2010-02-05 10:18:44 +0000 | 
|---|---|---|
| committer | David Höppner | 2010-02-05 11:30:10 +0100 | 
| commit | 0ea53cb2251399faf2137557a90a57f57917525f (patch) | |
| tree | 8f7a2f5ac798d905bd827b64e91709715c588afd /Library | |
| parent | 70e2770c5c0bddad9fcd0ed046de771e04583e99 (diff) | |
| download | homebrew-0ea53cb2251399faf2137557a90a57f57917525f.tar.bz2 | |
Adding formula for git-multipush
Signed-off-by: David Höppner <0xffea@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/git-multipush.rb | 13 | 
1 files changed, 13 insertions, 0 deletions
| diff --git a/Library/Formula/git-multipush.rb b/Library/Formula/git-multipush.rb new file mode 100644 index 000000000..832d78fd2 --- /dev/null +++ b/Library/Formula/git-multipush.rb @@ -0,0 +1,13 @@ +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' + +  depends_on 'git' + +  def install +    system "make", "prefix=#{prefix}", "install" +  end +end | 
