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

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

do_compile() {
        ${CC} ${LDFLAGS} -o encdec-updater ${WORKDIR}/encdec-updater.c
}
do_install() {
        install -d ${D}${bindir}
        install -m 0755 encdec-updater ${D}${bindir}/
}

BBCLASSEXTEND = "native"

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

NATIVE_INSTALL_WORKS = "1"