generic-poky/meta/packages/zaurus-updater/encdec-updater.bb
Ross Burton 915fab9f93 Fix typo in description
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1183 311d38ba-8fff-0310-9ca6-ca027cbcb966
2007-01-21 16:30:00 +00:00

17 lines
375 B
BlitzBasic

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}/
}