2010-09-11 20:22:54 +01:00
|
|
|
require 'formula_installer'
|
|
|
|
require 'hardware'
|
|
|
|
|
|
|
|
module Homebrew extend self
|
|
|
|
def install
|
2010-11-09 12:57:41 +00:00
|
|
|
blacklisted? ARGV.named do |msg, name|
|
|
|
|
abort msg
|
|
|
|
end unless ARGV.force?
|
|
|
|
|
|
|
|
install_formulae ARGV.formulae
|
2010-09-11 20:22:54 +01:00
|
|
|
end
|
|
|
|
|
2010-11-09 12:57:41 +00:00
|
|
|
def check_ppc
|
2010-09-11 20:22:54 +01:00
|
|
|
case Hardware.cpu_type when :ppc, :dunno
|
|
|
|
abort "Sorry, Homebrew does not support your computer's CPU architecture.\n"+
|
|
|
|
"For PPC support, see: http://github.com/sceaga/homebrew/tree/powerpc"
|
|
|
|
end
|
2010-11-09 12:57:41 +00:00
|
|
|
end
|
2010-09-11 20:22:54 +01:00
|
|
|
|
2010-11-09 12:57:41 +00:00
|
|
|
def check_writable_install_location
|
2010-09-11 20:22:54 +01:00
|
|
|
raise "Cannot write to #{HOMEBREW_CELLAR}" if HOMEBREW_CELLAR.exist? and not HOMEBREW_CELLAR.writable?
|
|
|
|
raise "Cannot write to #{HOMEBREW_PREFIX}" unless HOMEBREW_PREFIX.writable?
|
2010-11-09 12:57:41 +00:00
|
|
|
end
|
2010-09-11 20:22:54 +01:00
|
|
|
|
2010-11-09 12:57:41 +00:00
|
|
|
def check_cc
|
2010-09-11 20:22:54 +01:00
|
|
|
if MACOS_VERSION >= 10.6
|
2010-11-09 12:57:41 +00:00
|
|
|
opoo "You should upgrade to Xcode 3.2.3" if MacOS.llvm_build_version < RECOMMENDED_LLVM
|
2010-09-11 20:22:54 +01:00
|
|
|
else
|
2010-11-09 12:57:41 +00:00
|
|
|
opoo "You should upgrade to Xcode 3.1.4" if (MacOS.gcc_40_build_version < RECOMMENDED_GCC_40) or (MacOS.gcc_42_build_version < RECOMMENDED_GCC_42)
|
2010-09-11 20:22:54 +01:00
|
|
|
end
|
|
|
|
rescue
|
|
|
|
# the reason we don't abort is some formula don't require Xcode
|
|
|
|
# TODO allow formula to declare themselves as "not needing Xcode"
|
|
|
|
opoo "Xcode is not installed! Builds may fail!"
|
|
|
|
end
|
|
|
|
|
2010-11-09 12:57:41 +00:00
|
|
|
def check_macports
|
|
|
|
if MacOS.macports_or_fink_installed?
|
|
|
|
opoo "It appears you have Macports or Fink installed"
|
|
|
|
puts "Software installed with other package managers causes known problems for"
|
|
|
|
puts "Homebrew. If formula fail to build uninstall Macports/Fink and reinstall any"
|
|
|
|
puts "affected formula."
|
|
|
|
end
|
2010-09-11 20:22:54 +01:00
|
|
|
end
|
|
|
|
|
2010-11-09 12:57:41 +00:00
|
|
|
def install_formulae formulae
|
|
|
|
formulae = [formulae].flatten.compact
|
|
|
|
return if formulae.empty?
|
2010-09-11 20:22:54 +01:00
|
|
|
|
2010-11-09 12:57:41 +00:00
|
|
|
check_ppc
|
|
|
|
check_writable_install_location
|
|
|
|
check_cc
|
|
|
|
check_macports
|
|
|
|
|
|
|
|
formulae.each do |f|
|
|
|
|
begin
|
|
|
|
installer = FormulaInstaller.new f
|
|
|
|
installer.ignore_deps = ARGV.include? '--ignore-dependencies'
|
|
|
|
installer.go
|
|
|
|
rescue FormulaAlreadyInstalledError => e
|
|
|
|
opoo e.message
|
|
|
|
end
|
2010-09-11 20:22:54 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-11-09 12:57:41 +00:00
|
|
|
def blacklisted? names
|
|
|
|
names.each do |name|
|
|
|
|
msg = blacklisted_reason name
|
|
|
|
yield msg.undent, name if msg
|
|
|
|
end
|
|
|
|
end
|
2010-09-11 20:22:54 +01:00
|
|
|
|
2010-11-09 12:57:41 +00:00
|
|
|
def blacklisted_reason name
|
2010-09-11 20:22:54 +01:00
|
|
|
case name
|
2010-11-09 12:57:41 +00:00
|
|
|
when 'tex', 'tex-live', 'texlive' then <<-EOS
|
2010-09-11 20:22:54 +01:00
|
|
|
Installing TeX from source is weird and gross, requires a lot of patches,
|
|
|
|
and only builds 32-bit (and thus can't use Homebrew deps on Snow Leopard.)
|
|
|
|
|
|
|
|
We recommend using a MacTeX distribution:
|
|
|
|
http://www.tug.org/mactex/
|
2010-11-09 12:57:41 +00:00
|
|
|
EOS
|
|
|
|
when 'mercurial', 'hg' then <<-EOS
|
2010-09-11 20:22:54 +01:00
|
|
|
Mercurial can be install thusly:
|
|
|
|
brew install pip && pip install mercurial
|
2010-11-09 12:57:41 +00:00
|
|
|
EOS
|
2010-09-11 20:22:54 +01:00
|
|
|
when 'npm' then abort <<-EOS.undent
|
|
|
|
npm can be installed thusly by following the instructions at
|
|
|
|
http://npmjs.org/
|
|
|
|
|
|
|
|
To do it in one line, use this command:
|
|
|
|
curl http://npmjs.org/install.sh | sudo sh
|
2010-11-09 12:57:41 +00:00
|
|
|
EOS
|
2010-09-11 20:22:54 +01:00
|
|
|
when 'setuptools' then abort <<-EOS.undent
|
|
|
|
When working with a Homebrew-built Python, distribute is preferred
|
|
|
|
over setuptools, and can be used as the prerequisite for pip.
|
|
|
|
|
|
|
|
Install distribute using:
|
|
|
|
brew install distribute
|
2010-11-09 12:57:41 +00:00
|
|
|
EOS
|
2010-09-11 20:22:54 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|