aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/stage-manager/stagemanager-native_0.0.1.bb
blob: 957774911cccbf0efcc851439b6846bc85f58a1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
DESCRIPTION = "Helper script for packaged-staging.bbclass"
PR = "r15"

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"

NATIVE_INSTALL_WORKS = "1"
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}
}