package/dotconf: new package

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2023.02.x
Peter Seiderer 2023-01-06 22:08:25 +01:00 committed by Thomas Petazzoni
parent d00e437922
commit 5336566668
5 changed files with 28 additions and 0 deletions

View File

@ -2297,6 +2297,9 @@ F: package/wireguard-linux-compat/
F: package/wireguard-tools/
F: support/testing/tests/package/test_docker_compose.py
N: Peter Seiderer <ps.report@gmx.net>
F: package/dotconf/
N: Peter Thompson <peter.macleod.thompson@gmail.com>
F: package/sdl2_gfx/
F: package/sdl2_image/

View File

@ -2019,6 +2019,7 @@ menu "Other"
source "package/cracklib/Config.in"
source "package/dawgdic/Config.in"
source "package/ding-libs/Config.in"
source "package/dotconf/Config.in"
source "package/double-conversion/Config.in"
source "package/eigen/Config.in"
source "package/elfutils/Config.in"

View File

@ -0,0 +1,6 @@
config BR2_PACKAGE_DOTCONF
bool "dotconf"
help
Configuration file parser.
https://github.com/williamh/dotconf

View File

@ -0,0 +1,3 @@
# Locally calculated
sha256 7f1ecf40de1ad002a065a321582ed34f8c14242309c3547ad59710ae3c805653 dotconf-1.3.tar.gz
sha256 a50cc98d5044a7bbddabe61fc0ec42aa671c73bf414d0c6b50da83ea8ae041c6 COPYING

View File

@ -0,0 +1,15 @@
################################################################################
#
# dotconf
#
################################################################################
DOTCONF_VERSION = 1.3
DOTCONF_SITE = $(call github,williamh,dotconf,v$(DOTCONF_VERSION))
DOTCONF_LICENSE = LGPL-2.1
DOTCONF_LICENSE_FILES = COPYING
DOTCONF_INSTALL_STAGING = YES
# dotconf source code is released without configure script
DOTCONF_AUTORECONF = YES
$(eval $(autotools-package))