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