aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-test/hello-dut/hello-dut_0.1.bb
blob: 832b62fa872d7aaf2b663b68aa7d9eeadf66ed1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
SUMMARY = "Hello world recipe"
DESCRIPTION = "test application"
LICENSE = "CLOSED"
SRC_URI = "file://hello.c \
"
S = "${WORKDIR}"
do_compile() {
    ${CC} hello.c -o hello
}

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