]> git.pld-linux.org Git - packages/c-ares.git/blame - c-ares.spec
- treat not readable resolv.conf (and other /etc files) as if it was empty, not give...
[packages/c-ares.git] / c-ares.spec
CommitLineData
fb176567 1Summary: A library that performs asynchronous DNS operations
d0f05923 2Summary(pl.UTF-8): Biblioteka do wykonywania asynchronicznych zapytań DNS
fb176567 3Name: c-ares
cfde5497 4Version: 1.6.0
5122b158 5Release: 2
fb176567
AG
6License: MIT
7Group: Libraries
8Source0: http://daniel.haxx.se/projects/c-ares/%{name}-%{version}.tar.gz
cfde5497 9# Source0-md5: 4503b0db3dd79d3c1f58d87722dbab46
5122b158 10Patch0: %{name}-resolv.conf-reading-is-not-fatal.patch
fb176567 11URL: http://daniel.haxx.se/projects/c-ares/
cce9c713
ER
12BuildRequires: autoconf
13BuildRequires: automake
14BuildRequires: libtool
15BuildRequires: sed >= 4.0
fb176567
AG
16BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
17
18%description
19c-ares is a C library that performs DNS requests and name resolves
20asynchronously. c-ares is a fork of the library named 'ares', written
21by Greg Hudson at MIT.
22
166ca016
JR
23%description -l pl.UTF-8
24c-ares jest napisaną w C biblioteką do asynchronicznego wykonywania
25zapytań DNS. c-ares jest to fork biblioteki 'ares' napisanej przez
fb176567
AG
26Grega Hudsona w MIT.
27
28%package devel
29Summary: Development files for c-ares library
d0f05923 30Summary(pl.UTF-8): Pliki nagłówkowe dla biblioteki c-ares
fb176567
AG
31Group: Development/Libraries
32Requires: %{name} = %{version}-%{release}
33
34%description devel
35Header files for c-ares library.
36
166ca016
JR
37%description devel -l pl.UTF-8
38Pliki nagłówkowe biblioteki c-ares.
fb176567
AG
39
40%package static
41Summary: Static c-ares library
d0f05923 42Summary(pl.UTF-8): Statyczna biblioteka c-ares
fb176567
AG
43Group: Development/Libraries
44Requires: %{name}-devel = %{version}-%{release}
45
46%description static
47Static c-ares library.
48
166ca016 49%description static -l pl.UTF-8
fb176567
AG
50Statyczna biblioteka c-ares.
51
52%prep
53%setup -q
5122b158 54%patch0 -p1
fb176567 55
cce9c713
ER
56# we want our own debug flags, if any
57sed -i -e 's/flags_dbg_off=".*"/flags_dbg_off="%{rpmcflags}"/' m4/cares-compilers.m4
58sed -i -e 's/flags_opt_yes=".*"/flags_opt_yes="%{rpmcflags}"/' m4/cares-compilers.m4
59
fb176567 60%build
cce9c713
ER
61%{__libtoolize}
62%{__aclocal} -I m4
63%{__autoconf}
64%{__automake}
fb176567 65%configure \
cce9c713 66 --enable-optimize="%{rpmcflags}" \
fb176567
AG
67 --enable-shared
68
69%{__make}
70
71%install
72rm -rf $RPM_BUILD_ROOT
73%{__make} install \
74 DESTDIR=$RPM_BUILD_ROOT
75
76%clean
77rm -rf $RPM_BUILD_ROOT
78
0bea12c2
JB
79%post -p /sbin/ldconfig
80%postun -p /sbin/ldconfig
fb176567
AG
81
82%files
83%defattr(644,root,root,755)
84%doc README README.cares CHANGES NEWS
cce9c713
ER
85%attr(755,root,root) %{_libdir}/libcares.so.*.*.*
86%attr(755,root,root) %ghost %{_libdir}/libcares.so.2
fb176567
AG
87
88%files devel
89%defattr(644,root,root,755)
cce9c713
ER
90%{_libdir}/libcares.so
91%{_libdir}/libcares.la
92%{_includedir}/ares*.h
93%{_mandir}/man3/ares_*.3*
94%{_pkgconfigdir}/libcares.pc
fb176567
AG
95
96%files static
97%defattr(644,root,root,755)
cce9c713 98%{_libdir}/libcares.a
This page took 0.138084 seconds and 4 git commands to generate.