brew/Library/Homebrew/cmd/linkapps.rb

56 lines
1.4 KiB
Ruby
Raw Normal View History

require "keg"
require "formula"
2013-09-17 06:55:13 -07:00
module Homebrew
2013-09-17 06:55:13 -07:00
def linkapps
target_dir = linkapps_target(:local => ARGV.include?("--local"))
2013-09-17 06:55:13 -07:00
unless target_dir.directory?
2013-09-17 06:55:13 -07:00
opoo "#{target_dir} does not exist, stopping."
puts "Run `mkdir #{target_dir}` first."
exit 1
end
if ARGV.named.empty?
kegs = Formula.racks.map do |rack|
keg = rack.subdirs.map { |d| Keg.new(d) }
next if keg.empty?
keg.detect(&:linked?) || keg.max_by(&:version)
end
else
kegs = ARGV.kegs
end
2013-09-17 06:55:13 -07:00
link_count = 0
kegs.each do |keg|
keg.apps.each do |app|
puts "Linking: #{app}"
target_app = target_dir/app.basename
2013-09-17 06:55:13 -07:00
if target_app.exist? && !target_app.symlink?
onoe "#{target_app} already exists, skipping."
2013-09-17 06:55:13 -07:00
next
end
# We prefer system `ln` over `FileUtils.ln_sf` because the latter seems
# to have weird failure conditions (that were observed in the past).
2013-09-17 06:55:13 -07:00
system "ln", "-sf", app, target_dir
link_count += 1
2013-09-17 06:55:13 -07:00
end
end
if link_count.zero?
puts "No apps linked to #{target_dir}" if ARGV.verbose?
else
puts "Linked #{link_count} app#{plural(link_count)} to #{target_dir}"
end
end
private
def linkapps_target(opts = {})
local = opts.fetch(:local, false)
Pathname.new(local ? "~/Applications" : "/Applications").expand_path
2013-09-17 06:55:13 -07:00
end
end