blob: ded95a4a4eeaf5851e9c2f2a5f752cac2db38ab2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class GitSubtree <Formula
homepage 'http://github.com/apenwarr/git-subtree'
head 'git://github.com/apenwarr/git-subtree.git',
:tag => 'c00d1d11688dc02f066196ed18783effdb7767ab'
# Not depending on git because people might have it
# installed through another means
def install
bin.install "git-subtree.sh" => "git-subtree"
end
end
|