summaryrefslogtreecommitdiff
path: root/modplugplay/modplugplay_1.0.oe
blob: cc7691ce0d0b1533e84f668f3576b8c0c7f79a92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
DEPENDS = "virtual/libc libmodplug"
RDEPENDS = "libc6 libmodplug"

SRC_URI = http://www.linuks.mine.nu/modplugplay/${P}.tar.gz

do_compile() {
	${CC} -c ${CFLAGS} modplugplay.c -o modplugplay.o -I${STAGING_DIR}/target/include 
	${CC} -o modplugplay modplugplay.o ${LDFLAGS} -L${STAGING_LIBDIR} -lmodplug
}

do_install() {
	install -d ${D}${bindir}
	install -d ${D}${mandir}/man1
        install -m 755 modplugplay ${D}${bindir}/
        install -m 644 modplugplay.1 ${D}${mandir}/man1/
}