summaryrefslogtreecommitdiffstats
path: root/meta/packages/zaurus-updater/encdec-updater.bb
blob: c59d0e29762b7c09bd68c79805582a0ee0db9030 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
SECTION = "console/utils"
LICENSE = "GPL"
DESCRIPTION = "A tool to encode and decode the Sharp Zaurus updater.sh script"

SRC_URI = "file://encdec-updater.c"

COMPATIBLE_MACHINE = '(poodle|c7x0|spitz|akita|tosa)'

do_compile() {
	${CC} -o encdec-updater ${WORKDIR}/encdec-updater.c
}

do_install() {
	install -d ${D}${bindir}
	install -m 0755 encdec-updater ${D}${bindir}/
}

BBCLASSEXTEND = "native"