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