M7350/oe-core/meta-msm/recipes/upnpd/upnpd.bb
2024-09-09 08:57:42 +00:00

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