mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 00:20:38 -09:00
The iniparser is a simple C library offering ini file parsing services. ndctl[1] requires it. [1] https://github.com/pmem/ndctl Signed-off-by: Chen Pei <cp0613@linux.alibaba.com> Signed-off-by: Julien Olivain <ju.o@free.fr>
15 lines
467 B
Makefile
15 lines
467 B
Makefile
################################################################################
|
|
#
|
|
# iniparser
|
|
#
|
|
################################################################################
|
|
|
|
INIPARSER_VERSION = 4.2.6
|
|
INIPARSER_SITE = https://gitlab.com/iniparser/iniparser/-/archive/v$(INIPARSER_VERSION)
|
|
INIPARSER_SOURCE = iniparser-v$(INIPARSER_VERSION).tar.gz
|
|
INIPARSER_INSTALL_STAGING = YES
|
|
INIPARSER_LICENSE = MIT
|
|
INIPARSER_LICENSE_FILES = LICENSE
|
|
|
|
$(eval $(cmake-package))
|