2012-10-30 16:22:20 -04:00
|
|
|
# == Define: buildsource
|
|
|
|
#
|
|
|
|
# define to build from source using ./configure && make && make install.
|
|
|
|
#
|
|
|
|
define etherpad_lite::buildsource(
|
|
|
|
$dir = $title,
|
|
|
|
$user = 'root',
|
|
|
|
$timeout = 300,
|
|
|
|
$creates = '/nonexistant/file'
|
|
|
|
) {
|
|
|
|
|
|
|
|
exec { "./configure in ${dir}":
|
|
|
|
command => './configure',
|
|
|
|
path => "/usr/bin:/bin:/usr/local/bin:${dir}",
|
|
|
|
user => $user,
|
|
|
|
cwd => $dir,
|
|
|
|
creates => $creates,
|
2012-12-27 16:58:03 -08:00
|
|
|
before => Exec["make in ${dir}"],
|
2012-10-30 16:22:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
exec { "make in ${dir}":
|
|
|
|
command => 'make',
|
|
|
|
path => '/usr/bin:/bin',
|
|
|
|
user => $user,
|
|
|
|
cwd => $dir,
|
|
|
|
timeout => $timeout,
|
|
|
|
creates => $creates,
|
2012-12-27 16:58:03 -08:00
|
|
|
before => Exec["make install in ${dir}"],
|
2012-10-30 16:22:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
exec { "make install in ${dir}":
|
|
|
|
command => 'make install',
|
|
|
|
path => '/usr/bin:/bin',
|
|
|
|
user => $user,
|
|
|
|
cwd => $dir,
|
|
|
|
creates => $creates,
|
|
|
|
}
|
|
|
|
}
|