83 lines
3.3 KiB
RPMSpec
83 lines
3.3 KiB
RPMSpec
Name: libconfuse0
|
|
Version: 2.8
|
|
Release: 2mamba
|
|
Summary: A configuration file parser library
|
|
Group: System/Libraries
|
|
Vendor: openmamba
|
|
Distribution: openmamba
|
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
|
URL: http://www.nongnu.org/confuse/
|
|
Source: https://github.com/martinh/libconfuse.git/v%{version}/libconfuse-%{version}.tar.bz2
|
|
#Source: http://savannah.nongnu.org/download/confuse/confuse-%{version}.tar.gz
|
|
Patch0: libconfuse-2.6-lexer_noinput.patch
|
|
License: BSD
|
|
## AUTOBUILDREQ-BEGIN
|
|
BuildRequires: glibc-devel
|
|
## AUTOBUILDREQ-END
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
|
|
|
%description
|
|
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 was changed to not confuse with other similar libraries.
|
|
|
|
%package devel
|
|
Group: Development/Libraries
|
|
Summary: Static libraries and headers for %{name}
|
|
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
|
|
|
%description devel
|
|
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 was changed to not confuse with other similar libraries.
|
|
|
|
This package contains static libraries and header files need for development.
|
|
|
|
%prep
|
|
%setup -q -n libconfuse-%{version}
|
|
%patch0 -p1
|
|
|
|
%build
|
|
./autogen.sh
|
|
%configure --enable-shared
|
|
%make
|
|
|
|
%install
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
%makeinstall
|
|
|
|
%find_lang confuse
|
|
|
|
%clean
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
|
|
%post -p /sbin/ldconfig
|
|
%postun -p /sbin/ldconfig
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%{_libdir}/libconfuse.so.*
|
|
%doc AUTHORS
|
|
|
|
%files devel -f confuse.lang
|
|
%defattr(-,root,root)
|
|
%dir %{_includedir}
|
|
%{_includedir}/*.h
|
|
%{_libdir}/libconfuse.a
|
|
%{_libdir}/libconfuse.la
|
|
%{_libdir}/libconfuse.so
|
|
%{_libdir}/pkgconfig/*.pc
|
|
%dir %{_docdir}/confuse
|
|
%{_docdir}/confuse/*
|
|
|
|
%changelog
|
|
* Mon Aug 27 2018 Silvan Calarco <silvan.calarco@mambasoft.it> 2.8-2mamba
|
|
- legacy package
|
|
|
|
* Fri Jan 29 2016 Silvan Calarco <silvan.calarco@mambasoft.it> 2.8-1mamba
|
|
- update to 2.8
|
|
|
|
* Sun Dec 02 2012 Automatic Build System <autodist@mambasoft.it> 2.7-1mamba
|
|
- update to 2.7
|
|
|
|
* Mon Jul 06 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 2.6-1mamba
|
|
- package created by autospec
|