mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 05:23:39 +08:00
b5c2b86ccf
Update license hash due to copyright year bump:
e370f25e91
Changelog:
https://github.com/miniupnp/miniupnp/blob/master/miniupnpc/Changelog.txt
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
26 lines
915 B
Makefile
26 lines
915 B
Makefile
################################################################################
|
|
#
|
|
# libminiupnpc
|
|
#
|
|
################################################################################
|
|
|
|
LIBMINIUPNPC_VERSION = 2.2.7
|
|
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))
|