blob: 89730e55d949bb2ee2824fc02e904789f0fff1b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
DESCRIPTION = "This is a modified version of the icecc-create-env script in order to\
make it work with OE."
SECTION = "base"
PRIORITY = "optional"
LICENSE = "GPL"
DEPENDS = ""
INHIBIT_DEFAULT_DEPS = "1"
inherit native
SRC_URI = "http://www.digital-opsis.com/openembedded/icecc-create-env-${PV}.tar.gz"
S = "${WORKDIR}/icecc-create-env-${PV}"
do_stage() {
install -d ${STAGING_DIR}/ice
install -m 0755 ${WORKDIR}/icecc-create-env ${STAGING_DIR}/ice/icecc-create-env
}
|