blob: 832d78fd2b5996750837c81063849de4eaa345c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
|