diff options
| -rw-r--r-- | meta-oe/recipes-devtools/guider/guider_3.9.4.bb | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/guider/guider_3.9.4.bb b/meta-oe/recipes-devtools/guider/guider_3.9.4.bb new file mode 100644 index 0000000000..1a413452a3 --- /dev/null +++ b/meta-oe/recipes-devtools/guider/guider_3.9.4.bb | |||
| @@ -0,0 +1,35 @@ | |||
| 1 | SUMMARY = "runtime performance analyzer" | ||
| 2 | HOMEPAGE = "https://github.com/iipeace/guider" | ||
| 3 | BUGTRACKER = "https://github.com/iipeace/guider/issues" | ||
| 4 | AUTHOR = "Peace Lee <ipeace5@gmail.com>" | ||
| 5 | |||
| 6 | LICENSE = "GPLv2+" | ||
| 7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=2c1c00f9d3ed9e24fa69b932b7e7aff2" | ||
| 8 | |||
| 9 | PV = "3.9.4+git${SRCPV}" | ||
| 10 | PR = "r0" | ||
| 11 | |||
| 12 | SRC_URI = "git://github.com/iipeace/${BPN}" | ||
| 13 | #SRCREV = "${AUTOREV}" | ||
| 14 | SRCREV = "b433f3805674ef4588c1a161986c74eeac6a48e7" | ||
| 15 | |||
| 16 | S = "${WORKDIR}/git" | ||
| 17 | R = "${RECIPE_SYSROOT}" | ||
| 18 | |||
| 19 | inherit distutils | ||
| 20 | |||
| 21 | GUIDER_OBJ = "guider.pyc" | ||
| 22 | GUIDER_SCRIPT = "guider" | ||
| 23 | |||
| 24 | do_install() { | ||
| 25 | python ${S}/setup.py install | ||
| 26 | |||
| 27 | install -d ${D}${bindir} | ||
| 28 | install -v -m 0755 ${STAGING_BINDIR_NATIVE}/${GUIDER_SCRIPT} ${D}${bindir}/${GUIDER_SCRIPT} | ||
| 29 | |||
| 30 | install -d ${D}${datadir}/${BPN} | ||
| 31 | install -v -m 0755 ${STAGING_LIBDIR_NATIVE}/python${PYTHON_BASEVERSION}/site-packages/${BPN}/${GUIDER_OBJ} ${D}${datadir}/${BPN}/${GUIDER_OBJ} | ||
| 32 | } | ||
| 33 | |||
| 34 | RDEPENDS_${PN} = "python-ctypes python-shell \ | ||
| 35 | python-json python-subprocess" | ||
