summaryrefslogtreecommitdiff
path: root/encdec-updater/encdec-updater.oe
blob: f918678df05709ecd6155f7cb1b181c505da19d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
SECTION = "console/utils"
DESCRIPTION = "A tool to encode and decode the Sharp Zaurus updater.sh skript"

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

do_compile() {
	${CC} -o encdec-updater ${WORKDIR}/encdec-updater.c
}

do_install() {
	install -d ${D}/${bindir}
	install -m 0755 encdec-updater ${D}/${bindir}/
}