30bc9e5aef
Release notes: https://github.com/benhoyt/inih/releases/tag/r56 Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
21 lines
529 B
Makefile
21 lines
529 B
Makefile
################################################################################
|
|
#
|
|
# inih
|
|
#
|
|
################################################################################
|
|
|
|
INIH_VERSION = 56
|
|
INIH_SITE = $(call github,benhoyt,inih,r$(INIH_VERSION))
|
|
INIH_INSTALL_STAGING = YES
|
|
INIH_LICENSE = BSD-3-Clause
|
|
INIH_LICENSE_FILES = LICENSE.txt
|
|
INIH_CONF_OPTS = -Ddistro_install=true
|
|
|
|
ifeq ($(BR2_INSTALL_LIBSTDCPP),y)
|
|
INIH_CONF_OPTS += -Dwith_INIReader=true
|
|
else
|
|
INIH_CONF_OPTS += -Dwith_INIReader=false
|
|
endif
|
|
|
|
$(eval $(meson-package))
|