xref: /OK3568_Linux_fs/yocto/poky/meta-selftest/recipes-test/pseudo-pyc-test/pseudo-pyc-test.bb (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1SUMMARY = "pseudo env test"
2LICENSE = "MIT"
3LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
4
5INHIBIT_DEFAULT_DEPS = "1"
6
7python do_compile() {
8    import pseudo_pyc_test1
9    print(pseudo_pyc_test1.STRING)
10}
11
12python do_install() {
13    import pseudo_pyc_test2
14    print(pseudo_pyc_test2.STRING)
15}
16