2017-03-20 13:19:10 +00:00

68 lines
2.3 KiB
Ruby

#
# Cookbook Name:: tar
# Resource:: package
#
# Author:: Nathan L Smith (<nathan@cramerdev.com>)
#
# Copyright:: 2011, Cramer Development, 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.
#
attribute :source, String, name_attribute: true
attribute :headers, Hash, default: {}
attribute :prefix, String
attribute :source_directory, String, default: '/usr/local/src'
attribute :creates, String
attribute :configure_flags, Array, default: []
attribute :archive_name, String
attribute :headers, Hash
attribute :use_etag, [TrueClass, FalseClass], default: true
attribute :use_last_modified, [TrueClass, FalseClass], default: true
attribute :atomic_update, [TrueClass, FalseClass], default: true
attribute :force_unlink, [TrueClass, FalseClass], default: false
attribute :manage_symlink_source, [TrueClass, FalseClass]
action :install do
r = new_resource
basename = r.archive_name || ::File.basename(r.name)
dirname = basename.chomp('.tar.gz') # Assuming .tar.gz
src_dir = r.source_directory
remote_file basename do
source r.name
path "#{src_dir}/#{basename}"
backup false
headers r.headers unless r.headers.nil?
use_etag r.use_etag
use_last_modified r.use_last_modified
atomic_update r.atomic_update
force_unlink r.force_unlink
manage_symlink_source r.manage_symlink_source
action :create_if_missing
end
execute "extract #{basename}" do
command "tar xfz #{basename}"
cwd src_dir
creates "#{src_dir}/#{dirname}"
end
execute "compile & install #{dirname}" do
flags = [r.prefix ? "--prefix=#{r.prefix}" : nil, *r.configure_flags].compact.join(' ')
command "./configure --quiet #{flags} && make --quiet && make --quiet install"
cwd "#{src_dir}/#{dirname}"
creates r.creates
end
end