2014-01-07 16:29:49 +00:00
|
|
|
#
|
|
|
|
# This helper is for templates using WAF to build/install.
|
|
|
|
#
|
|
|
|
do_configure() {
|
|
|
|
python waf configure --prefix=/usr ${configure_args}
|
|
|
|
}
|
|
|
|
|
|
|
|
do_build() {
|
|
|
|
python waf build ${make_build_args}
|
|
|
|
}
|
|
|
|
|
|
|
|
do_install() {
|
2015-02-19 15:38:30 +00:00
|
|
|
python waf install --destdir=${DESTDIR} ${make_install_args}
|
2014-01-07 16:29:49 +00:00
|
|
|
}
|