SPECS: libconfuse.spec (NEW) - initial release
maciek2w
maciek2w at pld-linux.org
Fri Mar 10 23:53:45 CET 2006
Author: maciek2w Date: Fri Mar 10 22:53:45 2006 GMT
Module: SPECS Tag: HEAD
---- Log message:
- initial release
---- Files affected:
SPECS:
libconfuse.spec (NONE -> 1.1) (NEW)
---- Diffs:
================================================================
Index: SPECS/libconfuse.spec
diff -u /dev/null SPECS/libconfuse.spec:1.1
--- /dev/null Fri Mar 10 23:53:45 2006
+++ SPECS/libconfuse.spec Fri Mar 10 23:53:40 2006
@@ -0,0 +1,135 @@
+# $Revision$, $Date$
+#
+# Conditional build:
+%bcond_without static_libs # don't build static library
+
+%define _name confuse
+
+Summary: libConfuse - a library for parsing configuration files
+Summary(pl): libConfuse - biblioteka do parsowania plików konfiguracyjnych
+Name: libconfuse
+Version: 2.5
+Release: 0.1
+License: LGPL
+Group: Development/Libraries
+Source0: http://download.savannah.gnu.org/releases/confuse/%{_name}-%{version}.tar.gz
+# Source0-md5: 4bc9b73d77ebd571ac834619ce0b3582
+Patch0: %{name}-tests.patch
+URL: http://www.nongnu.org/confuse/
+BuildRequires: autoconf
+BuildRequires: automake > 1.6.3
+BuildRequires: gettext-devel >= 0.14.1
+BuildRequires: libtool > 1.4.2
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%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.
+
+%description -l pl
+Biblioteka libConfuse jest parserem plików konfiguracyjnych. Napisana
+została w języku C na licencji LGPL. Plik konfiguracyjny może zawierać
+sekcje i listę wartości następujących typów: napisy, liczby całkowite,
+zmiennoprzecinkowe, wartości logiczne. Napisy mogą być z pojedynczym
+lub podwójnym cudzysłowem. Zmienne środowiskowe są rozwijane. Można
+używać funkcji i zagnieżdżać wyrażenia.
+
+Biblioteka umożliwia w prosty sposób dodanie do programu obsługę
+plików konfiguracyjnych używając prostego API. Celem libConfuse nie
+jest stworzenie parsera plików z milionem funkcji, ale prostej
+biblioteki umożliwiającej szybką integrację z kodem programu.
+
+%package devel
+Summary: Header files for libConfuse library
+Summary(pl): Pliki nagłówkowe biblioteki libConfuse
+Group: Development/Libraries
+Requires: %{name} = %{version}-%{release}
+
+%description devel
+This is the package containing the header files for libConfuse
+library.
+
+%description devel -l pl
+Ten pakiet zawiera pliki nagłówkowe biblioteki libConfuse.
+
+%package static
+Summary: Static libConfuse library
+Summary(pl): Statyczna biblioteka libConfuse
+Group: Development/Libraries
+Requires: %{name}-devel = %{version}-%{release}
+
+%description static
+Static libConfuse library.
+
+%description static -l pl
+Statyczna biblioteka libConfuse.
+
+%prep
+%setup -q -n %{_name}-%{version}
+%patch0 -p1
+
+%build
+%{__libtoolize}
+%{__aclocal} -I m4
+%{__autoconf}
+%{__autoheader}
+%{__automake}
+cp -f %{_datadir}/automake/config.sub .
+%configure \
+ --%{?with_static_libs:en}%{!?with_static_libs:dis}able-static \
+ --enable-shared
+
+%{__make} \
+ CFLAGS="%{rpmcflags}" \
+ LDFLAGS="%{rpmldflags}"
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} install \
+ DESTDIR=$RPM_BUILD_ROOT
+
+%find_lang %{_name}
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post -p /sbin/ldconfig
+%postun -p /sbin/ldconfig
+
+%files -f %{_name}.lang
+%defattr(644,root,root,755)
+%doc AUTHORS NEWS README
+%attr(755,root,root) %{_libdir}/*.so*
+
+%files devel
+%defattr(644,root,root,755)
+%{_libdir}/*.la
+%{_includedir}/*.h
+%{_pkgconfigdir}/*
+
+%if %{with static_libs}
+%files static
+%defattr(644,root,root,755)
+%{_libdir}/lib*.a
+%endif
+
+%define date %(echo `LC_ALL="C" date +"%a %b %d %Y"`)
+%changelog
+* %{date} PLD Team <feedback at pld-linux.org>
+All persons listed below can be reached at <cvs_login>@pld-linux.org
+
+$Log$
+Revision 1.1 2006/03/10 22:53:40 maciek2w
+- initial release
+
================================================================
More information about the pld-cvs-commit
mailing list