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

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

BBCLASSEXTEND = "nativesdk native"