e1d0ac062c
Disable sample and tests (which are built by default since version 2.1:
530b272350
)
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
22 lines
862 B
Makefile
22 lines
862 B
Makefile
################################################################################
|
|
#
|
|
# libminiupnpc
|
|
#
|
|
################################################################################
|
|
|
|
LIBMINIUPNPC_VERSION_MAJOR = 2.1
|
|
LIBMINIUPNPC_VERSION_MINOR = 20201016
|
|
LIBMINIUPNPC_VERSION = $(LIBMINIUPNPC_VERSION_MAJOR).$(LIBMINIUPNPC_VERSION_MINOR)
|
|
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_CPE_ID_VERSION = $(LIBMINIUPNPC_VERSION_MAJOR)
|
|
LIBMINIUPNPC_CPE_ID_UPDATE = $(LIBMINIUPNPC_VERSION_MINOR)
|
|
LIBMINIUPNPC_CONF_OPTS = -DUPNPC_BUILD_SAMPLE=OFF -DUPNPC_BUILD_TESTS=OFF
|
|
|
|
$(eval $(cmake-package))
|