diff options
| author | Tim Felgentreff | 2010-09-13 23:52:04 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2010-09-13 14:55:53 -0700 |
| commit | c2b267236eee16542f648b4ce43bbf054a73284c (patch) | |
| tree | f987c1e9981eeb77249ce53b420593f6dfc1bfb6 /Library/Formula/git-hg.rb | |
| parent | a8d02a54c03e7b2d46a3ed0f4a0314ad3a1ec52d (diff) | |
| download | homebrew-c2b267236eee16542f648b4ce43bbf054a73284c.tar.bz2 | |
add formula for git-hg
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/git-hg.rb')
| -rw-r--r-- | Library/Formula/git-hg.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/git-hg.rb b/Library/Formula/git-hg.rb new file mode 100644 index 000000000..2064e0ecd --- /dev/null +++ b/Library/Formula/git-hg.rb @@ -0,0 +1,12 @@ +require 'formula' + +class GitHg < Formula + head 'git://github.com/offbytwo/git-hg.git' + homepage 'http://offbytwo.com/git-hg/' + + def install + # Install all + prefix.install Dir['*'] + end +end + |
