]> git.pld-linux.org Git - packages/conflib.git/blob - conflib.spec
- new {un}registering procedure for info pages with using
[packages/conflib.git] / conflib.spec
1 Summary:        configuration file library
2 Summary(de):    Library zum Lesen von Konfigurationsdateien
3 Name:           conflib
4 Version:        0.4.5
5 Release:        1
6 Copyright:      GPL
7 Group:          Libraries
8 Source:         ftp://ftp.ohse.de/uwe/releases/%{name}-%{version}.tar.gz
9 Patch:          conflib-info.patch
10 Buildroot:      /tmp/%{name}-%{version}-root
11
12 %description 
13 A C language library for reading configuration files.
14
15 %package devel
16 Summary:        file for developing programs that use the conflib library
17 Summary(de):    Dateien zum Entwickeln von Programmen mit der conflib-Library
18 Group:          Development/Libraries
19 Requires:       %{name} = %{version}
20 Prereq:         /usr/sbin/fix-info-dir
21
22 %description devel
23 This library makes it relativly easy to read configuration files (one or
24 more), or parts of them. It supports a lot of different data types and
25 some types of text interpretations, including \-escapes, ~user, $HOME
26 and conditional expansions.
27
28 %package static
29 Summary:        file for developing programs that use the conflib library
30 Summary(de):    Dateien zum Entwickeln von Programmen mit der conflib-Library
31 Group:          Development/Libraries
32 Requires:       %{name}-devel = %{version}
33
34 %description static
35 This library makes it relativly easy to read configuration files (one or
36 more), or parts of them. It supports a lot of different data types and
37 some types of text interpretations, including \-escapes, ~user, $HOME
38 and conditional expansions.
39
40 %prep
41 %setup -q
42 %patch -p1
43
44 %build
45 LDFLAGS="-s"; export LDFLAGS
46 %configure
47 make
48
49 %install
50 rm -rf $RPM_BUILD_ROOT
51 make install DESTDIR=$RPM_BUILD_ROOT
52
53 strip --strip-unneeded $RPM_BUILD_ROOT%{_libdir}/lib*.so.*.*
54
55 gzip -9nf $RPM_BUILD_ROOT%{_infodir}/*info* \
56         README NEWS ChangeLog
57
58 %post   -p /sbin/ldconfig
59 %postun -p /sbin/ldconfig
60
61 %post devel
62 /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>&1
63
64 %preun devel
65 /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>&1
66
67 %clean
68 rm -rf $RPM_BUILD_ROOT
69
70 %files
71 %defattr(644,root,root,755)
72 %attr(755,root,root) %{_libdir}/lib*.so.*.*
73
74 %files devel
75 %defattr(644,root,root,755)
76 %doc README.gz NEWS.gz ChangeLog.gz
77 %{_includedir}/*.h
78 %attr(755,root,root) %{_libdir}/lib*.so
79 %attr(755,root,root) %{_libdir}/lib*.la
80 %{_infodir}/*info*
81
82 %files static
83 %defattr(644,root,root,755)
84 %{_libdir}/lib*.a
This page took 0.065358 seconds and 4 git commands to generate.