2014-01-07 16:29:49 +00:00
|
|
|
#
|
|
|
|
# This helper is for templates using GNU configure scripts.
|
|
|
|
#
|
|
|
|
do_configure() {
|
|
|
|
: ${configure_script:=./configure}
|
|
|
|
|
|
|
|
${configure_script} ${configure_args}
|
|
|
|
}
|
|
|
|
|
|
|
|
do_build() {
|
|
|
|
: ${make_cmd:=make}
|
|
|
|
|
|
|
|
${make_cmd} ${makejobs} ${make_build_args} ${make_build_target}
|
|
|
|
}
|
|
|
|
|
|
|
|
do_install() {
|
|
|
|
: ${make_cmd:=make}
|
|
|
|
: ${make_install_target:=install}
|
|
|
|
|
2015-02-19 15:38:30 +00:00
|
|
|
${make_cmd} DESTDIR=${DESTDIR} ${make_install_args} ${make_install_target}
|
2014-01-07 16:29:49 +00:00
|
|
|
}
|