mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-05 06:33:50 +02:00
New package: confuse-2.7 - config file parser in C
This commit is contained in:
parent
3598ea1aa5
commit
82a1820528
4 changed files with 41 additions and 0 deletions
1
srcpkgs/confuse-devel
Symbolic link
1
srcpkgs/confuse-devel
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
confuse
|
15
srcpkgs/confuse/confuse-devel.template
Normal file
15
srcpkgs/confuse/confuse-devel.template
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
# Template file for 'confuse-devel'.
|
||||||
|
#
|
||||||
|
short_desc="${short_desc} (development files)"
|
||||||
|
long_desc="${long_desc}
|
||||||
|
|
||||||
|
This package contains files for development, headers, static libs, etc."
|
||||||
|
|
||||||
|
Add_dependency run confuse
|
||||||
|
|
||||||
|
do_install()
|
||||||
|
{
|
||||||
|
vmove usr/include usr
|
||||||
|
vmove "usr/lib/*.a" usr/lib
|
||||||
|
vmove usr/lib/pkgconfig usr/lib
|
||||||
|
}
|
1
srcpkgs/confuse/confuse.rshlibs
Normal file
1
srcpkgs/confuse/confuse.rshlibs
Normal file
|
@ -0,0 +1 @@
|
||||||
|
libc.so.6
|
24
srcpkgs/confuse/template
Normal file
24
srcpkgs/confuse/template
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
# Template file for 'confuse'
|
||||||
|
pkgname=confuse
|
||||||
|
version=2.7
|
||||||
|
distfiles="http://savannah.nongnu.org/download/confuse/confuse-2.7.tar.gz"
|
||||||
|
build_style=gnu-configure
|
||||||
|
configure_args="--enable-shared --enable-static"
|
||||||
|
short_desc="C-library for parsing configuration files"
|
||||||
|
maintainer="davehome <davehome@redthumb.info.tm>"
|
||||||
|
checksum=e32574fd837e950778dac7ade40787dd2259ef8e28acd6ede6847ca895c88778
|
||||||
|
long_desc="
|
||||||
|
libConfuse is a configuration file parser library, licensed under the terms
|
||||||
|
of the ISC license, and written in C. It supports sections and (lists of)
|
||||||
|
values (strings, integers, floats, booleans or other sections), as well as
|
||||||
|
some other features (such as single/double-quoted strings, environment
|
||||||
|
variable expansion, functions and nested include statements). It makes it
|
||||||
|
very easy to add configuration file capability to a program using a simple
|
||||||
|
API.
|
||||||
|
|
||||||
|
The goal of libConfuse is not to be the configuration file parser library
|
||||||
|
with a gazillion of features. Instead, it aims to be easy to use and quick
|
||||||
|
to integrate with your code. libConfuse was called libcfg before, but its
|
||||||
|
name was changed to not confuse itself with other similar libraries."
|
||||||
|
|
||||||
|
subpackages="$pkgname-devel"
|
Loading…
Add table
Reference in a new issue