aa371ee534
2022/02/20:
upnpc: use of @ to replace local lan address
2021/11/09:
python module : Allow to specify the root description url
- Drop patch (already in version)
- Update hash of LICENSE file (license "refined" for github with
af812c8775
)
http://miniupnp.free.fr/files/changelog.php?file=miniupnpc-2.2.4.tar.gz
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
26 lines
915 B
Makefile
26 lines
915 B
Makefile
################################################################################
|
|
#
|
|
# libminiupnpc
|
|
#
|
|
################################################################################
|
|
|
|
LIBMINIUPNPC_VERSION = 2.2.4
|
|
LIBMINIUPNPC_SOURCE = miniupnpc-$(LIBMINIUPNPC_VERSION).tar.gz
|
|
LIBMINIUPNPC_SITE = http://miniupnp.free.fr/files
|
|
LIBMINIUPNPC_INSTALL_STAGING = YES
|
|
LIBMINIUPNPC_LICENSE = BSD-3-Clause
|
|
LIBMINIUPNPC_LICENSE_FILES = LICENSE
|
|
LIBMINIUPNPC_CPE_ID_VENDOR = miniupnp_project
|
|
LIBMINIUPNPC_CPE_ID_PRODUCT = miniupnpc
|
|
LIBMINIUPNPC_CONF_OPTS = -DUPNPC_BUILD_SAMPLE=OFF -DUPNPC_BUILD_TESTS=OFF
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
LIBMINIUPNPC_CONF_OPTS += -DUPNPC_BUILD_SHARED=OFF -DUPNPC_BUILD_STATIC=ON
|
|
else ifeq ($(BR2_SHARED_LIBS),y)
|
|
LIBMINIUPNPC_CONF_OPTS += -DUPNPC_BUILD_SHARED=ON -DUPNPC_BUILD_STATIC=OFF
|
|
else
|
|
LIBMINIUPNPC_CONF_OPTS += -DUPNPC_BUILD_SHARED=ON -DUPNPC_BUILD_STATIC=ON
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|