2010-09-11 20:22:54 +01:00
|
|
|
require 'formula_installer'
|
|
|
|
require 'hardware'
|
2010-11-14 03:52:59 +00:00
|
|
|
require 'blacklist'
|
2010-09-11 20:22:54 +01:00
|
|
|
|
|
|
|
module Homebrew extend self
|
|
|
|
def install
|
2010-11-14 03:52:59 +00:00
|
|
|
ARGV.named.each do |name|
|
|
|
|
msg = blacklisted? name
|
|
|
|
raise "No available formula for #{name}\n#{msg}" if msg
|
2010-11-09 12:57:41 +00:00
|
|
|
end unless ARGV.force?
|
|
|
|
|
2011-08-24 11:30:32 +01:00
|
|
|
ARGV.formulae.each do |f|
|
|
|
|
if File.directory? HOMEBREW_REPOSITORY/"Library/LinkedKegs/#{f.name}"
|
|
|
|
raise "#{f} already installed\nTry: brew upgrade #{f}"
|
|
|
|
end
|
2011-09-01 10:27:47 +01:00
|
|
|
end unless ARGV.force?
|
2011-08-24 11:30:32 +01:00
|
|
|
|
2011-08-17 12:30:21 +01:00
|
|
|
if Process.uid.zero? and not File.stat(HOMEBREW_BREW_FILE).uid.zero?
|
|
|
|
# note we only abort if Homebrew is *not* installed as sudo and the user
|
|
|
|
# calls brew as root. The fix is to chown brew to root.
|
|
|
|
abort "Cowardly refusing to `sudo brew install'"
|
|
|
|
end
|
|
|
|
|
2010-11-09 12:57:41 +00:00
|
|
|
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-11-09 13:00:33 +00:00
|
|
|
case Hardware.cpu_type when :ppc, :dunno
|
|
|
|
abort <<-EOS.undent
|
|
|
|
Sorry, Homebrew does not support your computer's CPU architecture.
|
|
|
|
For PPC support, see: http://github.com/sceaga/homebrew/tree/powerpc
|
|
|
|
EOS
|
|
|
|
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-11-09 13:00:33 +00:00
|
|
|
raise "Cannot write to #{HOMEBREW_CELLAR}" if HOMEBREW_CELLAR.exist? and not HOMEBREW_CELLAR.writable?
|
2011-07-29 16:57:22 +01:00
|
|
|
raise "Cannot write to #{HOMEBREW_PREFIX}" unless HOMEBREW_PREFIX.writable? or HOMEBREW_PREFIX.to_s == '/usr/local'
|
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
|
2011-06-06 08:03:07 -07:00
|
|
|
if MacOS.snow_leopard?
|
|
|
|
if MacOS.llvm_build_version < RECOMMENDED_LLVM
|
|
|
|
opoo "You should upgrade to Xcode 3.2.6"
|
|
|
|
end
|
2010-09-11 20:22:54 +01:00
|
|
|
else
|
2011-06-06 08:03:07 -07:00
|
|
|
if (MacOS.gcc_40_build_version < RECOMMENDED_GCC_40) or (MacOS.gcc_42_build_version < RECOMMENDED_GCC_42)
|
|
|
|
opoo "You should upgrade to Xcode 3.1.4"
|
|
|
|
end
|
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?
|
2011-09-01 10:08:21 -07:00
|
|
|
opoo "It appears you have Macports or Fink installed."
|
2010-11-09 12:57:41 +00:00
|
|
|
puts "Software installed with other package managers causes known problems for"
|
2011-09-01 10:08:21 -07:00
|
|
|
puts "Homebrew. If a formula fails to build, uninstall Macports/Fink try again."
|
2010-11-09 12:57:41 +00:00
|
|
|
end
|
2010-09-11 20:22:54 +01:00
|
|
|
end
|
|
|
|
|
2011-08-23 23:30:52 +01:00
|
|
|
def perform_preinstall_checks
|
2010-11-09 12:57:41 +00:00
|
|
|
check_ppc
|
|
|
|
check_writable_install_location
|
|
|
|
check_cc
|
|
|
|
check_macports
|
2011-08-23 23:30:52 +01:00
|
|
|
end
|
2010-11-09 12:57:41 +00:00
|
|
|
|
2011-08-23 23:30:52 +01:00
|
|
|
def install_formulae formulae
|
|
|
|
formulae = [formulae].flatten.compact
|
|
|
|
unless formulae.empty?
|
|
|
|
perform_preinstall_checks
|
|
|
|
formulae.each do |f|
|
|
|
|
begin
|
|
|
|
fi = FormulaInstaller.new(f)
|
|
|
|
fi.install
|
|
|
|
fi.caveats
|
|
|
|
fi.finish
|
|
|
|
rescue FormulaAlreadyInstalledError => e
|
|
|
|
opoo e.message
|
|
|
|
end
|
2010-11-09 12:57:41 +00:00
|
|
|
end
|
2010-09-11 20:22:54 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|