]> git.pld-linux.org Git - packages/conflib.git/blob - conflib.spec
- more rpm macroc,
[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 Prereq:         /sbin/install-info
11 Buildroot:      /tmp/%{name}-%{version}-root
12
13 %description 
14 A C language library for reading configuration files.
15
16 %package devel
17 Summary:        file for developing programs that use the conflib library
18 Summary(de):    Dateien zum Entwickeln von Programmen mit der conflib-Library
19 Group:          Development/Libraries
20 Requires:       %{name} = %{version}
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
59 /sbin/ldconfig
60 /sbin/install-info %{_infodir}/conflib.info.gz /etc/info-dir
61
62 %postun -p /sbin/ldconfig
63
64 %preun
65 if [ "$1" = "0" ]; then
66         /sbin/install-info --delete %{_infodir}/conflib.info.gz /etc/info-dir
67 fi
68
69 %clean
70 rm -rf $RPM_BUILD_ROOT
71
72 %files
73 %defattr(644,root,root,755)
74 %attr(755,root,root) %{_libdir}/lib*.so.*.*
75
76 %files devel
77 %defattr(644,root,root,755)
78 %doc README.gz NEWS.gz ChangeLog.gz
79 %{_includedir}/*.h
80 %attr(755,root,root) %{_libdir}/lib*.so
81 %attr(755,root,root) %{_libdir}/lib*.la
82 %{_infodir}/*info*
83
84 %files static
85 %defattr(644,root,root,755)
86 %{_libdir}/lib*.a
This page took 0.041333 seconds and 4 git commands to generate.