generic-poky/meta/packages/stage-manager/stagemanager-native_0.0.1.bb

27 lines
663 B
BlitzBasic

DESCRIPTION = "Helper script for packaged-staging.bbclass"
PR = "r9"
SRC_URI = "file://stage-manager \
file://stage-manager-ipkg \
file://stage-manager-ipkg-build "
LICENSE = "GPLv2"
PACKAGE_ARCH = "all"
inherit native
DEPENDS = " "
PACKAGE_DEPENDS = " "
PATCHDEPENDENCY = ""
INHIBIT_DEFAULT_DEPS = "1"
PSTAGING_DISABLED = "1"
# This function is special and allowed to onstall into staging directly
do_install() {
install -d ${STAGING_BINDIR}
install -m 0755 ${WORKDIR}/stage-manager ${STAGING_BINDIR}
install -m 0755 ${WORKDIR}/stage-manager-ipkg ${STAGING_BINDIR}
install -m 0755 ${WORKDIR}/stage-manager-ipkg-build ${STAGING_BINDIR}
}