homebrew-core/Formula/git.rb

80 lines
2.4 KiB
Ruby
Raw Normal View History

require 'formula'
class GitManuals < Formula
url 'http://git-core.googlecode.com/files/git-manpages-1.7.8.3.tar.gz'
sha1 'a6e2b7cff8181ee52a1cc00ebba7b349850d6680'
end
class GitHtmldocs < Formula
url 'http://git-core.googlecode.com/files/git-htmldocs-1.7.8.3.tar.gz'
sha1 '8a65d2425c1b6f646d130cf5846e92e9e0e93736'
end
class Git < Formula
url 'http://git-core.googlecode.com/files/git-1.7.8.3.tar.gz'
sha1 'e5eb8c289b69d69fd08c81b587a06eb5dd2b5c1c'
homepage 'http://git-scm.com'
depends_on 'pcre' if ARGV.include? '--with-pcre'
def options
[
['--with-blk-sha1', 'compile with the optimized SHA1 implementation'],
['--with-pcre', 'compile with the PCRE library'],
]
end
def install
2011-06-04 04:38:35 +00:00
# If these things are installed, tell Git build system to not use them
2009-07-30 20:35:22 +00:00
ENV['NO_FINK']='1'
ENV['NO_DARWIN_PORTS']='1'
ENV['V']='1' # build verbosely
ENV['NO_R_TO_GCC_LINKER']='1' # pass arguments to LD correctly
# workaround for users of perlbrew
ENV['PERL_PATH'] = `/usr/bin/which perl`.chomp
# Clean XCode 4.x installs don't include Perl MakeMaker
ENV['NO_PERL_MAKEMAKER']='1' if MacOS.lion?
ENV['BLK_SHA1']='1' if ARGV.include? '--with-blk-sha1'
if ARGV.include? '--with-pcre'
ENV['USE_LIBPCRE']='1'
ENV['LIBPCREDIR'] = HOMEBREW_PREFIX
end
inreplace "Makefile" do |s|
s.remove_make_var! %w{CC CFLAGS LDFLAGS}
end
2009-07-30 20:35:22 +00:00
2010-01-23 10:36:16 +00:00
system "make", "prefix=#{prefix}", "install"
2011-06-04 04:38:35 +00:00
# Install the Git bash completion file.
2011-02-27 20:58:35 +00:00
# Put it into the Cellar so that it gets upgraded along with git upgrades.
(prefix+'etc/bash_completion.d').install 'contrib/completion/git-completion.bash'
2011-02-27 20:58:35 +00:00
# Install emacs support.
2010-12-05 02:40:41 +00:00
(share+'doc/git-core/contrib').install 'contrib/emacs'
2011-08-25 10:24:46 +00:00
# Some people like the stuff in the contrib folder
(share+'git').install 'contrib'
2011-06-04 04:38:35 +00:00
# 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['*'] }
GitHtmldocs.new.brew { (share+'doc/git-doc').install Dir['*'] }
end
2011-02-27 20:58:35 +00:00
def caveats; <<-EOS.undent
2011-04-18 17:17:42 +00:00
Bash completion has been installed to:
#{etc}/bash_completion.d
2011-02-27 20:58:35 +00:00
2011-04-18 17:17:42 +00:00
Emacs support has been installed to:
#{HOMEBREW_PREFIX}/share/doc/git-core/contrib/emacs
2011-04-18 17:17:42 +00:00
The rest of the "contrib" is installed to:
#{HOMEBREW_PREFIX}/share/git/contrib
2011-02-27 20:58:35 +00:00
EOS
end
end