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