]> git.pld-linux.org Git - packages/apr-compat.git/blob - apr-compat.spec
- proper desc
[packages/apr-compat.git] / apr-compat.spec
1 Summary:        Apache Portable Runtime
2 Name:           apr
3 Version:        0.9.3
4 Release:        1
5 Epoch:          1
6 License:        GPL
7 Group:          Libraries
8 Source0:        http://www.apache.org/dist/apr/%{name}-%{version}.tar.gz
9 # Source0-md5:  03b243de20ffcf4f30565bc4771489a6
10 URL:            http://apr.apache.org/
11 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
12
13 %define         _includedir     /usr/include/apr
14 %define         _datadir        /usr/share/apr
15
16 %description
17 The mission of the Apache Portable Runtime (APR) project is to create
18 and maintain software libraries that provide a predictable and
19 consistent interface to underlying platform-specific implementations.
20 The primary goal is to provide an API to which software developers may
21 code and be assured of predictable if not identical behaviour
22 regardless of the platform on which their software is built, relieving
23 them of the need to code special-case conditions to work around or
24 take advantage of platform-specific deficiencies or features.
25
26 %package devel
27 Summary:        Header files and develpment documentation for apr
28 Group:          Development/Libraries
29 Requires:       %{name} = %{epoch}:%{version}
30 Requires:       libtool
31
32 %description devel
33 Header files and develpment documentation for apr.
34
35 %package static
36 Summary:        Static apr library
37 Group:          Development/Libraries
38 Requires:       %{name}-devel = %{epoch}:%{version}
39
40 %description static
41 Static apr library.
42
43 %prep
44 %setup  -q
45
46 %build
47 %configure \
48         --enable-threads
49 %{__make}
50
51 %install
52 rm -rf $RPM_BUILD_ROOT
53
54 %{__make} install \
55         DESTDIR=$RPM_BUILD_ROOT
56
57 ln -sf %{_bindir}/libtool $RPM_BUILD_ROOT%{_datadir}/libtool
58
59 %post   -p /sbin/ldconfig
60 %postun -p /sbin/ldconfig
61
62 %clean
63 rm -rf $RPM_BUILD_ROOT
64
65 %files
66 %defattr(644,root,root,755)
67 %doc CHANGES STATUS docs/*.html
68 %attr(755,root,root) %{_libdir}/lib*.so.*.*
69
70 %files devel
71 %defattr(644,root,root,755)
72 %attr(755,root,root) %{_bindir}/*
73 %attr(755,root,root) %{_libdir}/lib*.so
74 %{_libdir}/lib*.la
75 %{_libdir}/apr.exp
76 %{_includedir}
77 %dir %{_datadir}
78 %dir %{_datadir}/build
79 %{_datadir}/build/*.mk
80 %attr(755,root,root) %{_datadir}/build/libtool
81
82 %files static
83 %defattr(644,root,root,755)
84 %{_libdir}/lib*.a
This page took 0.072195 seconds and 3 git commands to generate.