Sophie

Sophie

distrib > Mandriva > 10.0-com > i586 > by-pkgid > d748d43a726477953bba2b436cca274b > files > 2

libconfuse-2.1-1mdk.src.rpm

%define	name	libconfuse
%define	version	2.1
%define	release	1mdk

%define	major	0
%define libname	%mklibname confuse %{major}

Summary:	A library of functions for parsing configuration files in C
Name:		%{name}
Version:	%{version}
Release:	%{release}
License:	LGPL
Group:		System/Libraries
URL:		http://www.nongnu.org/confuse/
Source0:	confuse-%{version}.tar.bz2
BuildRoot:	%{_tmppath}/%{name}-buildroot

%description
libConfuse is a configuration file parser library, licensed under
the terms of the LGPL, 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.

%package -n	%{libname}
Summary:	A library of functions for parsing configuration files in C
Group:          System/Libraries

%description -n	%{libname}
libConfuse is a configuration file parser library, licensed under
the terms of the LGPL, 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.

%package -n	%{libname}-devel
Summary:	Development library and header files for the %{name} library
Group:		Development/C
Provides:	%{libname}-devel = %{version}
Provides:	confuse-devel
Requires:	%{libname} = %{version}-%{release}

%description -n	%{libname}-devel
libConfuse is a configuration file parser library, licensed under
the terms of the LGPL, 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.

%prep

%setup -q -n confuse-%{version}

%build

%configure2_5x \
    --enable-shared \
    --enable-static \
    --disable-rpath

%make

%install
[ -n "%{buildroot}" -a "%{buildroot}" != / ] && rm -rf %{buildroot}

%makeinstall_std

install -d %{buildroot}%{_mandir}/man3
install -m0644 doc/man/man3/*.3 %{buildroot}%{_mandir}/man3/

make distclean

%post -n %{libname} -p /sbin/ldconfig
%postun -n %{libname} -p /sbin/ldconfig

%clean
[ -n "%{buildroot}" -a "%{buildroot}" != / ] && rm -rf %{buildroot}

%files -n %{libname}
%defattr(-,root,root)
%doc AUTHORS NEWS README
#%{_libdir}/*.so.*
%{_libdir}/libconfuse.0.0.0
%{_mandir}/man3/*

%files -n %{libname}-devel
%defattr(-,root,root)
%doc examples doc/html/*
%{_includedir}/*
#%{_libdir}/*.so
%{_libdir}/libconfuse
%{_libdir}/libconfuse.0
%{_libdir}/*.a
%{_libdir}/*.la

%changelog
* Sat Aug 09 2003 Oden Eriksson <oden.eriksson@kvikkjokk.net> 2.1-1mdk
- initial cooker contrib