xref: /OK3568_Linux_fs/yocto/meta-qt5/recipes-qt/examples/qt5nmapcarousedemo_1.0.bb (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1SUMMARY = "NMap Carousel application is demonstrating the normal mapping technique using Qt5"
2DESCRIPTION = "Normal mapping is used for making the icons appear 3D with lighting and shadows"
3HOMEPAGE = "http://quitcoding.com/?page=work#cinex"
4LICENSE = "CC-BY-3.0"
5LIC_FILES_CHKSUM = "file://README;beginline=44;endline=55;md5=3a9db934c393a0cf198cbe7e73ebec86"
6
7DEPENDS = "qtdeclarative qtgraphicaleffects"
8
9SRC_URI = "http://quitcoding.com/download/Qt5_NMap_CarouselDemo_1.0.tgz"
10SRC_URI[md5sum] = "c1b4568cdbb6b3af4ca10c5a90aa8128"
11SRC_URI[sha256sum] = "445da212074a10a432f4508d125814212bbe7a967bfa47b015b92dfac6bfd65f"
12
13S = "${WORKDIR}/Qt5_NMap_CarouselDemo_1.0"
14
15require recipes-qt/qt5/qt5.inc
16
17do_install() {
18    install -d ${D}${datadir}/${P}
19    install -m 0755 ${B}/Qt5_NMap_CarouselDemo ${D}${datadir}/${P}
20    cp ${S}/Qt5_NMap_CarouselDemo.qml ${D}${datadir}/${P}
21    cp -R --no-dereference --preserve=mode,links ${S}/content ${D}${datadir}/${P}
22}
23
24FILES:${PN} += "${datadir}"
25
26RDEPENDS:${PN} = "qtdeclarative-qmlplugins qtgraphicaleffects-qmlplugins"
27