blob: 45e3eb71b74ef32f31346972ce1aa6652d410185 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
SECTION = "console/utils"
DESCRIPTION = "A tool to encode and decode the Sharp Zaurus updater.sh skript"
inherit native
SRC_URI = "file://encdec-updater.c"
do_compile() {
${CC} -o encdec-updater ${WORKDIR}/encdec-updater.c
}
do_stage() {
install -m 0755 encdec-updater ${STAGING_BINDIR}
}
|