]> git.pld-linux.org Git - packages/apr-compat.git/blob - apr-compat.spec
13fcdc63fabe388558586e3f157d7fb4d0631315
[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 Libpcap provides a portable framework for low-level network
34 monitoring. Libpcap can provide network statistics collection,
35 security monitoring and network debugging. Since almost every system
36 vendor provides a different interface for packet capture, the apr
37 authors created this system-independent API to ease in porting and to
38 alleviate the need for several system-dependent packet capture modules
39 in each application.
40
41 Install apr if you need to do low-level network traffic monitoring on
42 your network.
43
44 %package static
45 Summary:        Static apr library
46 Group:          Development/Libraries
47 Requires:       %{name}-devel = %{epoch}:%{version}
48
49 %description static
50 Static apr library.
51
52 %prep
53 %setup  -q
54
55 %build
56 %configure \
57         --enable-threads
58 %{__make}
59
60 %install
61 rm -rf $RPM_BUILD_ROOT
62
63 %{__make} install \
64         DESTDIR=$RPM_BUILD_ROOT
65
66 ln -sf %{_bindir}/libtool $RPM_BUILD_ROOT%{_datadir}/libtool
67
68 %post   -p /sbin/ldconfig
69 %postun -p /sbin/ldconfig
70
71 %clean
72 rm -rf $RPM_BUILD_ROOT
73
74 %files
75 %defattr(644,root,root,755)
76 %doc CHANGES STATUS docs/*.html
77 %attr(755,root,root) %{_libdir}/lib*.so.*.*
78
79 %files devel
80 %defattr(644,root,root,755)
81 %attr(755,root,root) %{_bindir}/*
82 %attr(755,root,root) %{_libdir}/lib*.so
83 %{_libdir}/lib*.la
84 %{_libdir}/apr.exp
85 %{_includedir}
86 %dir %{_datadir}
87 %dir %{_datadir}/build
88 %{_datadir}/build/*.mk
89 %attr(755,root,root) %{_datadir}/build/libtool
90
91 %files static
92 %defattr(644,root,root,755)
93 %{_libdir}/lib*.a
This page took 0.064322 seconds and 3 git commands to generate.