mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@530 311d38ba-8fff-0310-9ca6-ca027cbcb966
16 lines
466 B
Plaintext
16 lines
466 B
Plaintext
inherit distutils-base
|
|
|
|
distutils_do_compile() {
|
|
BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} \
|
|
${STAGING_BINDIR}/python setup.py build || \
|
|
oefatal "python setup.py build execution failed."
|
|
}
|
|
|
|
distutils_do_install() {
|
|
BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} \
|
|
${STAGING_BINDIR}/python setup.py install --prefix=${D}/${prefix} --install-data=${D}/${datadir} || \
|
|
oefatal "python setup.py install execution failed."
|
|
}
|
|
|
|
EXPORT_FUNCTIONS do_compile do_install
|