Sha256: 6481cc0ce0525af6ab93f47f871eb8b9d749bdd96ef5435ffabe7df96381710c

Contents?: true

Size: 1.67 KB

Versions: 4

Compression:

Stored size: 1.67 KB

Contents

#
# Cookbook Name:: build-essential
# Recipe:: mac_os_x
#
# Copyright 2008-2013, Opscode, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

require 'chef/shell_out'

result = Chef::ShellOut.new("pkgutil --pkgs").run_command
osx_gcc_installer_installed = result.stdout.split("\n").include?("com.apple.pkg.gcc4.2Leo")
developer_tools_cli_installed = result.stdout.split("\n").include?("com.apple.pkg.DeveloperToolsCLI")
pkg_filename = ::File.basename(node['build_essential']['osx']['gcc_installer_url'])
pkg_path = "#{Chef::Config[:file_cache_path]}/#{pkg_filename}"

r = remote_file pkg_path do
  source node['build_essential']['osx']['gcc_installer_url']
  checksum node['build_essential']['osx']['gcc_installer_checksum']
  action( node['build_essential']['compiletime'] ? :nothing : :create )
  not_if { osx_gcc_installer_installed or developer_tools_cli_installed  }
end
r.run_action(:create) if node['build_essential']['compiletime']

r = execute "sudo installer -pkg \"#{pkg_path}\" -target /" do
  action( node['build_essential']['compiletime'] ? :nothing : :run )
  not_if { osx_gcc_installer_installed or developer_tools_cli_installed  }
end
r.run_action(:run) if node['build_essential']['compiletime']

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
agile_solo-0.1.0 spec/chef_repo/cookbooks/build-essential/recipes/mac_os_x.rb
BtSync-0.6.2 cookbooks/build-essential/recipes/mac_os_x.rb
BtSync-0.6.1 cookbooks/build-essential/recipes/mac_os_x.rb
BtSync-0.5.3 cookbooks/build-essential/recipes/mac_os_x.rb