]> git.pld-linux.org Git - packages/apr_memcache.git/blob - apr_memcache.spec
- release 3
[packages/apr_memcache.git] / apr_memcache.spec
1 Summary:        A client for memcached
2 Summary(pl.UTF-8):      Klient memcached
3 Name:           apr_memcache
4 Version:        0.7.0
5 Release:        3
6 License:        Apache v2.0
7 Group:          Libraries
8 Source0:        http://www.outoforder.cc/downloads/apr_memcache/%{name}-%{version}.tar.bz2
9 # Source0-md5:  1d62fea9253d17d304cfe9b26813ef4c
10 Patch0:         %{name}-libtool.patch
11 URL:            http://www.outoforder.cc/projects/libs/apr_memcache/
12 BuildRequires:  apr-devel >= 1:1.2.2
13 BuildRequires:  apr-util-devel >= 1:1.2.2
14 BuildRequires:  autoconf >= 2.53
15 BuildRequires:  automake
16 BuildRequires:  libtool
17 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19 %description
20 apr_memcache is a client for memcached written in C, using APR and
21 APR-Util. It provides pooled client connections and is thread safe,
22 making it perfect for use inside Apache Modules.
23
24 %description -l pl.UTF-8
25 apr_memcache to klient memcached napisany w C, wykorzystujący APR i
26 APR-Util. Udostępnia pule połączeń klienckich i może być używany
27 wielowątkowo, co czyni go dobrze nadającym się do używania w modułach
28 Apache'a.
29
30 %package devel
31 Summary:        Development files for apr_memcache
32 Summary(pl.UTF-8):      Pliki nagłówkowe apr_memcache
33 Group:          Development/Libraries
34 Requires:       %{name} = %{version}-%{release}
35 Requires:       apr-devel >= 1:1.2.2
36 Requires:       apr-util-devel >= 1:1.2.2
37
38 %description devel
39 Header files for apr_memcache.
40
41 %description devel -l pl.UTF-8
42 Pliki nagłówkowe apr_memcache.
43
44 %package static
45 Summary:        Static apr_memcache library
46 Summary(pl.UTF-8):      Statyczna biblioteka apr_memcache
47 Group:          Development/Libraries
48 Requires:       %{name}-devel = %{version}-%{release}
49
50 %description static
51 Static apr_memcache library.
52
53 %description static -l pl.UTF-8
54 Statyczna biblioteka apr_memcache.
55
56 %prep
57 %setup -q
58 %patch0 -p1
59
60 %build
61 %{__libtoolize}
62 %{__aclocal} -I m4
63 %{__autoheader}
64 %{__automake}
65 %{__autoconf}
66
67 %configure \
68         --with-apr=%{_bindir}/apr-1-config \
69         --with-apr-util=%{_bindir}/apu-1-config
70
71 %{__make} \
72         CFLAGS="%{rpmcflags} `apu-1-config --includes` `apr-1-config --includes`"
73
74 %install
75 rm -rf $RPM_BUILD_ROOT
76
77 %{__make} install \
78         DESTDIR=$RPM_BUILD_ROOT
79
80 %clean
81 rm -rf $RPM_BUILD_ROOT
82
83 %post   -p /sbin/ldconfig
84 %postun -p /sbin/ldconfig
85
86 %files
87 %defattr(644,root,root,755)
88 %doc LICENSE NOTICE test
89 %attr(755,root,root) %{_libdir}/libapr_memcache.so.*.*.*
90 %attr(755,root,root) %ghost %{_libdir}/libapr_memcache.so.0
91
92 %files devel
93 %defattr(644,root,root,755)
94 %attr(755,root,root) %{_libdir}/libapr_memcache.so
95 %{_libdir}/libapr_memcache.la
96 %{_includedir}/apr_memcache-0
97
98 %files static
99 %defattr(644,root,root,755)
100 %{_libdir}/libapr_memcache.a
This page took 0.162649 seconds and 3 git commands to generate.