aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/git-multipush.rb
diff options
context:
space:
mode:
authorCaius Durling2010-02-05 10:18:44 +0000
committerDavid Höppner2010-02-05 11:30:10 +0100
commit0ea53cb2251399faf2137557a90a57f57917525f (patch)
tree8f7a2f5ac798d905bd827b64e91709715c588afd /Library/Formula/git-multipush.rb
parent70e2770c5c0bddad9fcd0ed046de771e04583e99 (diff)
downloadhomebrew-0ea53cb2251399faf2137557a90a57f57917525f.tar.bz2
Adding formula for git-multipush
Signed-off-by: David Höppner <0xffea@gmail.com>
Diffstat (limited to 'Library/Formula/git-multipush.rb')
-rw-r--r--Library/Formula/git-multipush.rb13
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