]> git.pld-linux.org Git - packages/dotconf.git/commitdiff
- initial, needed for building speech-dispatcher auto/th/dotconf-1_0_13-0_1
authortwittner <twittner@pld-linux.org>
Thu, 3 Jan 2008 17:12:23 +0000 (17:12 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    dotconf.spec -> 1.1

dotconf.spec [new file with mode: 0644]

diff --git a/dotconf.spec b/dotconf.spec
new file mode 100644 (file)
index 0000000..1cc9c29
--- /dev/null
@@ -0,0 +1,96 @@
+Summary:       Configuration file parser library
+#Summary(pl.UTF-8):    -
+Name:          dotconf
+Version:       1.0.13
+Release:       0.1
+License:       LGPL
+Group:         Libraries
+Source0:       http://www.azzit.de/dotconf/download/v1.0/%{name}-%{version}.tar.gz
+# Source0-md5: bbf981a5f4a64e94cc6f2a693f96c21a
+BuildRequires: autoconf
+BuildRequires: automake
+BuildRequires: libtool
+URL:           http://www.azzit.de/dotconf/
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+dot.conf is a simple-to-use and powerful configuration-file parser
+library written in C. The configuration files created for dot.conf
+look very similar to those used by the Apache Webserver. Even
+Container-Directives known from httpd.conf can easily be used in the
+exact same manner as for Apache-Modules. It supports various types of
+arguments, dynamically loadable modules that create their own
+configuration options on-the-fly, a here-documents feature to pass
+very long ARG_STR data to your app, and on-the-fly inclusion of
+additional config files.
+
+#description -l pl.UTF-8
+
+%package devel
+Summary:       Header files for dot.conf library
+Summary(pl.UTF-8):     Pliki nagłówkowe biblioteki dot.conf
+Group:         Development/Libraries
+Requires:      %{name} = %{version}-%{release}
+
+%description devel
+Header files for dot.conf library.
+
+%description devel -l pl.UTF-8
+Pliki nagłówkowe biblioteki dot.conf.
+
+%package static
+Summary:       Static dot.conf library
+Summary(pl.UTF-8):     Statyczna biblioteka dot.conf
+Group:         Development/Libraries
+Requires:      %{name}-devel = %{version}-%{release}
+
+%description static
+Static dot.conf library.
+
+%description static -l pl.UTF-8
+Statyczna biblioteka dot.conf.
+
+%prep
+%setup -q
+#%patch0 -p1
+
+%build
+# if ac/am/lt/* rebuilding is necessary, do it in this order and add
+# appropriate BuildRequires
+%{__libtoolize}
+%{__aclocal}
+%{__autoconf}
+%{__autoheader}
+%{__automake}
+%configure
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} install \
+       DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post  -p /sbin/ldconfig
+%postun        -p /sbin/ldconfig
+
+%files
+%defattr(644,root,root,755)
+%doc AUTHORS ChangeLog NEWS README doc/*.txt examples
+%attr(755,root,root) %{_bindir}/*
+%attr(755,root,root) %{_libdir}/lib*.so.*.*.*
+
+%files devel
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/lib*.so
+%{_libdir}/lib*.la
+%{_includedir}/*
+%{_aclocaldir}/*.m4
+%{_pkgconfigdir}/*.pc
+
+%files static
+%defattr(644,root,root,755)
+%{_libdir}/lib*.a
This page took 0.072951 seconds and 4 git commands to generate.