Merge oe-devel@oe-devel.bkbits.net:packages
[openembedded.git] / slugtool / slugtool.oe
1 SECTION = "unknown"
2 DESCRIPTION = "Slugtool is a small app to disassemble and reassemble \
3 flash images for the Linksys NSLU2 device."
4 MAINTAINER = "Chris Larson <kergoth@handhelds.org>"
5 PR = "r1"
6
7 SRC_URI = "http://www.lantz.com/filemgmt_data/files/slugtool.tar.gz \
8            file://redboot_typo.patch;patch=1"
9 S = "${WORKDIR}"
10
11 do_compile () {
12         ${CC} ${CFLAGS} ${LDFLAGS} slugtool.c -o slugtool
13 }
14
15 do_install () {
16         install -d ${D}/${bindir}
17         install -m 0755 slugtool ${D}/${bindir}/
18 }