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