Another pass of .oe cleanups.
[vuplus_openembedded] / modplugplay / modplugplay_1.0.oe
1 DEPENDS = "virtual/libc libmodplug"
2 RDEPENDS = "libc6 libmodplug"
3 DESCRIPTION = "modplugplay is a commandline mod-like audio file player."
4
5 SRC_URI = "http://www.linuks.mine.nu/modplugplay/modplugplay-${PV}.tar.gz"
6
7 do_compile() {
8         ${CC} -c ${CFLAGS} modplugplay.c -o modplugplay.o
9         ${CC} -o modplugplay modplugplay.o ${LDFLAGS} -lmodplug
10 }
11
12 do_install() {
13         install -d ${D}${bindir}
14         install -d ${D}${mandir}/man1
15         install -m 0755 modplugplay ${D}${bindir}/
16         install -m 0644 modplugplay.1 ${D}${mandir}/man1/
17 }
18