aboutsummaryrefslogtreecommitdiffstats
path: root/classes/scons.bbclass
blob: b7007b03a6d489cc22c7d38637a44f3dcaf38226 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
DEPENDS += "python-scons-native"

scons_do_compile() {
        ${STAGING_BINDIR_NATIVE}/scons ${PARALLEL_MAKE} PREFIX=${prefix} prefix=${prefix} || \
        oefatal "scons build execution failed."
}

scons_do_install() {
	install -d ${D}${prefix}
        ${STAGING_BINDIR_NATIVE}/scons PREFIX=${D}${prefix} prefix=${D}${prefix} install || \
        oefatal "scons install execution failed."
}

EXPORT_FUNCTIONS do_compile do_install