24 lines
404 B
BlitzBasic
24 lines
404 B
BlitzBasic
DESCRIPTION = "Used for upnp function"
|
|
|
|
inherit tp-link-common
|
|
|
|
SRC_DIR = "${WORKSPACE}/oe-core/build/downloads/upnpd.tar.bz2"
|
|
|
|
S="${WORKDIR}/${PN}"
|
|
|
|
#Disable the split of debug information into -dbg files
|
|
INHIBIT_PACKAGE_DEBUG_SPLIT = "1"
|
|
DEPENDS += "libupnp"
|
|
PACKAGES = "${PN}"
|
|
|
|
do_compile() {
|
|
oe_runmake
|
|
}
|
|
|
|
do_install() {
|
|
install -d ${D}${bindir}/
|
|
install -m 0755 upnpd ${D}${bindir}/
|
|
}
|
|
|
|
|