aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/zaurus-utils/nandlogical_1.0.0.bb
blob: df261540bd01e51b815ef26230d55c220ef1720d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
DESCRIPTION = "Nandlogical for Sharp mtd1"
LICENSE = "GPL"
DEPENDS = "mtd-utils"
COMPATIBLE_MACHINE = "(poodle|c7x0|akita|spitz|tosa)"
PR = "r3"

SRC_URI = "file://nandlogical.c"

S = "${WORKDIR}"

do_compile () {
	${CC} ${CFLAGS} ${LDFLAGS} nandlogical.c -o nandlogical
}

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