diff options
Diffstat (limited to 'Library/Formula/git.rb')
| -rw-r--r-- | Library/Formula/git.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Library/Formula/git.rb b/Library/Formula/git.rb index 8f8043319..0fb3c3d72 100644 --- a/Library/Formula/git.rb +++ b/Library/Formula/git.rb @@ -5,6 +5,11 @@ class GitManuals < Formula md5 '58e0c6b194d989de8f7c4c7193315287' end +class GitHtmldocs < Formula + url 'http://kernel.org/pub/software/scm/git/git-htmldocs-1.7.0.2.tar.bz2' + md5 'a33cd464d4c31e3ef0440e7e8d367f02' +end + class Git < Formula url 'http://kernel.org/pub/software/scm/git/git-1.7.0.2.tar.bz2' md5 '76518fa774b36de81d160b85fa4f19c1' @@ -42,5 +47,7 @@ class Git < Formula # we could build the manpages ourselves, but the build process depends # on many other packages, and is somewhat crazy, this way is easier GitManuals.new.brew { man.install Dir['*'] } + doc = share+'doc/git-doc' + GitHtmldocs.new.brew { doc.install Dir['*'] } end end |
