DESCRIPTION = "Install can-utils application" SECTION = "can-utils" DEPENDS = "" LICENSE = "CLOSED" SRC_URI = "file://candump \ file://cangen \ file://cansend" S = "${WORKDIR}" ## prebuilt library don't need following steps do_configure[noexec] = "1" do_compile[noexec] = "1" do_package_qa[noexec] = "1" do_install() { install -d ${D}${bindir} install -m 0755 ${WORKDIR}/candump ${D}${bindir} install -m 0755 ${WORKDIR}/cangen ${D}${bindir} install -m 0755 ${WORKDIR}/cansend ${D}${bindir} } INSANE_SKIP:${PN} += "already-stripped"