From: Daniel Bermond Date: Sat, 12 Dec 2020 22:23:38 +0000 (+0000) Subject: miniupnpc: add InstallDev X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=refs%2Fpull%2F14254%2Fhead;p=feed%2Fpackages.git miniupnpc: add InstallDev Commit ef388ff1f3f2 removed 'CMAKE_INSTALL:=1', and this makes the development files to be not installed anymore on 'staging_dir'. Being such, packages that needs to link against libminiupnpc fails to build, because it cannot find the headers and the library. Adding an InstallDev fixes this. Build-tested on: ipq806x (R7800) Run-tested on: ipq806x (R7800) Signed-off-by: Daniel Bermond --- diff --git a/net/miniupnpc/Makefile b/net/miniupnpc/Makefile index c04b50898d..7a8a572456 100644 --- a/net/miniupnpc/Makefile +++ b/net/miniupnpc/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=miniupnpc PKG_VERSION:=2.2.0 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://miniupnp.tuxfamily.org/files @@ -51,6 +51,13 @@ CMAKE_OPTIONS += -DUPNPC_BUILD_TESTS=OFF TARGET_CFLAGS += $(FPIC) TARGET_LDFLAGS += -Wl,--gc-sections,--as-needed +define Build/InstallDev + $(INSTALL_DIR) $(1)/usr/include + $(INSTALL_DIR) $(1)/usr/lib + $(CP) $(PKG_INSTALL_DIR)/usr/include/miniupnpc/ $(1)/usr/include/ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/lib*.{a,so*} $(1)/usr/lib/ +endef + define Package/miniupnpc/install $(INSTALL_DIR) $(1)/usr/bin $(INSTALL_BIN) $(PKG_BUILD_DIR)/upnpc-shared $(1)/usr/bin/upnpc