Merge oe-devel@oe-devel.bkbits.net:packages
[openembedded.git] / encdec-updater / encdec-updater.oe
1 SECTION = "console/utils"
2 LICENSE = "GPL"
3 DESCRIPTION = "A tool to encode and decode the Sharp Zaurus updater.sh skript"
4
5 SRC_URI = "file://encdec-updater.c"
6
7 do_compile() {
8         ${CC} -o encdec-updater ${WORKDIR}/encdec-updater.c
9 }
10
11 do_install() {
12         install -d ${D}/${bindir}
13         install -m 0755 encdec-updater ${D}/${bindir}/
14 }