27 lines
722 B
BlitzBasic
27 lines
722 B
BlitzBasic
|
|
# NOTE: LICENSE is being set to "CLOSED" to allow you to at least start building - if
|
|
# this is not accurate with respect to the licensing of the software being built (it
|
|
# will not be in most cases) you must specify the correct value before using this
|
|
# recipe for anything other than initial testing/development!
|
|
LICENSE = "CLOSED"
|
|
LIC_FILES_CHKSUM = ""
|
|
|
|
SRC_URI = "git://git@bitbucket.org/dol-sensors/example-projects.git;protocol=ssh;branch=main"
|
|
|
|
PV = "1.0+git${SRCPV}"
|
|
SRCREV = "5f94ed3ba1bff1c6631d0234c7dbe65c27c4791e"
|
|
|
|
S = "${WORKDIR}/git/${BPN}"
|
|
|
|
do_compile () {
|
|
oe_runmake
|
|
}
|
|
|
|
do_install () {
|
|
install -d ${D}${bindir}
|
|
install -m 0755 ${S}/build/helloworld-c-make ${D}${bindir}
|
|
}
|
|
|
|
FILES:${PN} += "${bindir}"
|
|
|