blob: 7b2d80acf00b58db53db04354810cd322abf4059 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
DESCRIPTION = "Loader tool for Amstrad Delta (E3)"
LICENSE = "GPL"
PR = "r0"
SRC_URI = "http://the.earth.li/pub/e3/pbltool-${PV}.c"
INHIBIT_NATIVE_STAGE_INSTALL = "1"
do_compile() {
${CC} -o pbltool ${WORKDIR}/pbltool-${PV}.c
}
do_deploy() {
install -d ${DEPLOY_DIR_IMAGE}
install -m 0755 pbltool ${DEPLOY_DIR_IMAGE}
}
addtask deploy before do_build after do_compile
inherit native
|