libraries/canfigger: Updated for version 0.3.0.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Andy Alt 2024-03-07 10:28:20 +07:00 committed by Willy Sudiarto Raharjo
parent 3f23fe3e50
commit 9bd34e8dcf
No known key found for this signature in database
GPG key ID: 3F617144D7238786
4 changed files with 14 additions and 15 deletions

View file

@ -1,11 +1,10 @@
# canfigger
Simple configuration file parser library
Canfigger is a lightweight C language library designed to parse
configuration files. It provides functionality to read them and
represent their contents as a linked list of key-value pairs, along
with associated attributes for each pair.
website: https://github.com/andy5995/canfigger
website: https://github.com/andy5995/canfigger/
This library contains a function that parses simple configuration
files that use a key/value pair with optional attributes.
See README.md on the GitHub repo for more info about the API and
examples.
See README.md on the GitHub repo for more info and examples.

View file

@ -22,7 +22,7 @@
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=canfigger
VERSION=${VERSION:-0.2.0}
VERSION=${VERSION:-0.3.0}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}

View file

@ -1,8 +1,8 @@
PRGNAM="canfigger"
VERSION="0.2.0"
VERSION="0.3.0"
HOMEPAGE="https://github.com/andy5995/canfigger/"
DOWNLOAD="https://github.com/andy5995/canfigger/releases/download/v0.2.0/canfigger-0.2.0.tar.xz"
MD5SUM="8550259d3b26b36fcb519ce297aaaccf"
DOWNLOAD="https://github.com/andy5995/canfigger/releases/download/v0.3.0/canfigger-0.3.0.tar.xz"
MD5SUM="f0142db8726d22896d9e04342fe3de7d"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES=""

View file

@ -8,10 +8,10 @@
|-----handy-ruler------------------------------------------------------|
canfigger: canfigger (Config File Parser)
canfigger:
canfigger: canfigger is a library that contains a function that parses simple
canfigger: configuration files which consist of a key/value pair with optional
canfigger: attributes.
canfigger:
canfigger: Lightweight C language library designed to parse configuration files.
canfigger: It provides functionality to read them and represent their contents as
canfigger: a linked list of key-value pairs, along with associated attributes for
canfigger: each pair.
canfigger:
canfigger:
canfigger: