2011-12-07 22:59:34 +00:00
|
|
|
require 'fileutils'
|
|
|
|
|
|
|
|
Puppet::Type.type(:make_and_install).provide(:action) do
|
|
|
|
desc "Configure a program to install"
|
|
|
|
|
|
|
|
def create
|
2011-12-08 13:58:22 +00:00
|
|
|
system %{bash -c '#{path} cd #{@resource[:build_path]} ; make && make install'}
|
2012-01-18 17:29:05 +00:00
|
|
|
|
|
|
|
FileUtils.rm_rf symlink_path
|
|
|
|
FileUtils.ln_sf(@resource[:install_path], symlink_path)
|
2011-12-07 22:59:34 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
FileUtils.rm_rf @resource[:install_path]
|
|
|
|
FileUtils.rm_rf symlink_path
|
|
|
|
end
|
|
|
|
|
|
|
|
def exists?
|
|
|
|
File.directory?(@resource[:install_path]) && File.symlink?(symlink_path)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
def symlink_path
|
|
|
|
File.join(File.dirname(@resource[:install_path]), @resource[:name])
|
|
|
|
end
|
2011-12-08 13:58:22 +00:00
|
|
|
|
|
|
|
def path
|
|
|
|
@resource[:path].empty? ? '' : "export PATH=#{@resource[:path]}:$PATH ; "
|
|
|
|
end
|
2011-12-07 22:59:34 +00:00
|
|
|
end
|