diff options
| author | Max Howell | 2009-08-30 16:12:46 +0100 |
|---|---|---|
| committer | Max Howell | 2009-08-30 16:12:46 +0100 |
| commit | 7f14a9f20ae2e8f21ee5c82d3629b2359af2f373 (patch) | |
| tree | e3591b94aed3993edf3b9ec0f58dc2c1ee22600a /Library/Formula/git.rb | |
| parent | d293aa3796598945661f76720c6ab5c5a37e46c6 (diff) | |
| download | homebrew-7f14a9f20ae2e8f21ee5c82d3629b2359af2f373.tar.bz2 | |
Full ImageMagick install
I used the imagemagick-installer script that made the rounds on Twitter lately as a basis.
But a number of improvements, eg. lets not mess around with the OS X installation of cups.
Diffstat (limited to 'Library/Formula/git.rb')
| -rw-r--r-- | Library/Formula/git.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Library/Formula/git.rb b/Library/Formula/git.rb index 9ac21af74..bf7bb879c 100644 --- a/Library/Formula/git.rb +++ b/Library/Formula/git.rb @@ -11,10 +11,6 @@ class Git <Formula @homepage='http://git-scm.com' def install - # the manuals come separately, well sort of, it's easier this way though - man.mkpath - GitManuals.new.brew { FileUtils.mv Dir['*'], man } - # if these things are installed, tell git build system to not use them ENV['NO_FINK']='1' ENV['NO_DARWIN_PORTS']='1' @@ -30,5 +26,9 @@ class Git <Formula (bin+fn).unlink (bin+fn).make_link bin+'git' end + + # 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['*'] } end end
\ No newline at end of file |
