diff options
| -rw-r--r-- | recipes-qt/examples/qt5ledscreen_1.0.bb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/recipes-qt/examples/qt5ledscreen_1.0.bb b/recipes-qt/examples/qt5ledscreen_1.0.bb new file mode 100644 index 00000000..e16c557e --- /dev/null +++ b/recipes-qt/examples/qt5ledscreen_1.0.bb | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | SUMMARY = "QT5 LedScreen" | ||
| 2 | DESCRIPTION = "This is LedScreen Qt5 QML component" | ||
| 3 | HOMEPAGE = "http://quitcoding.com/?page=work#cinex" | ||
| 4 | LICENSE = "CC-BY-3.0" | ||
| 5 | LIC_FILES_CHKSUM = "file://README.txt;md5=fe07f4a0be40fe88f8c7ceaca63a28b5" | ||
| 6 | |||
| 7 | DEPENDS = "qtdeclarative qtgraphicaleffects" | ||
| 8 | |||
| 9 | SRC_URI = "http://quitcoding.com/download/ledscreen_1.0.tgz" | ||
| 10 | SRC_URI[md5sum] = "8fc482d5a8b16f43f022c9a282f305b8" | ||
| 11 | SRC_URI[sha256sum] = "fa4759b70a5fa148a901a3f9a659f7bd2503d73774022012bded880dffa0d15c" | ||
| 12 | |||
| 13 | S = "${WORKDIR}/ledscreen_1.0" | ||
| 14 | |||
| 15 | do_install() { | ||
| 16 | install -d ${D}${datadir}/${P} | ||
| 17 | #install -m 0755 ${B}/QUItBattery ${D}${datadir}/${P} | ||
| 18 | cp -ar ${S}/* ${D}${datadir}/${P} | ||
| 19 | } | ||
| 20 | |||
| 21 | FILES_${PN}-dbg += "${datadir}/${P}/.debug" | ||
| 22 | FILES_${PN} += "${datadir}" | ||
| 23 | |||
| 24 | RDEPENDS_${PN} = "qtdeclarative-qmlplugins qtgraphicaleffects-qmlplugins" | ||
