summaryrefslogtreecommitdiff
path: root/examples/yocto/meta-mini/recipes-hello/helloqt/helloqt_1.0.bb
blob: e9d7b90c6d27782f60dcede680afa48dc57ec792 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
DESCRIPTION = "helloqt QT example"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
SECTION = "examples"
SRC_URI = "file://${BPN}-${PV}.tar.bz2"

inherit qt4e

PR = "r4"

do_install() {
	install -d ${D}${bindir}
	install -m 0755 helloqt ${D}${bindir}
}