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

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