c-ares/c-ares.spec

90 lines
2.3 KiB
RPMSpec
Raw Normal View History

Summary: A library that performs asynchronous DNS operations
Name: c-ares
2007-06-27 14:02:37 +00:00
Version: 1.4.0
2007-01-17 20:42:00 +00:00
Release: 1%{?dist}
License: MIT
Group: System Environment/Libraries
URL: http://daniel.haxx.se/projects/c-ares/
2005-09-05 02:54:37 +00:00
Source0: http://daniel.haxx.se/projects/c-ares/c-ares-%{version}.tar.gz
Source1: LICENSE
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
%description
c-ares is a C library that performs DNS requests and name resolves
asynchronously. c-ares is a fork of the library named 'ares', written
by Greg Hudson at MIT.
%package devel
Summary: Development files for c-ares
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
%description devel
This package contains the header files and static libraries needed to
compile applications or shared objects that use c-ares.
%prep
%setup -q
2005-09-05 02:54:37 +00:00
cp %{SOURCE1} .
%build
%configure --enable-shared
%{__make} %{?_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
make DESTDIR=$RPM_BUILD_ROOT install
rm -rf $RPM_BUILD_ROOT/%{_libdir}/libcares.la
2007-06-27 14:02:37 +00:00
rm -rf $RPM_BUILD_ROOT/%{_libdir}/libcares.a
%clean
rm -rf $RPM_BUILD_ROOT
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-, root, root)
2005-09-05 02:54:37 +00:00
%doc README README.cares CHANGES NEWS LICENSE
%{_libdir}/*.so.*
%files devel
%defattr(-, root, root, 0755)
%{_includedir}/ares.h
2007-06-27 14:02:37 +00:00
%{_includedir}/ares_dns.h
%{_includedir}/ares_version.h
%{_libdir}/*.so
%{_mandir}/man3/ares_*
%changelog
2007-06-27 14:02:37 +00:00
* Wed Jun 27 2007 Tom "spot" Callaway <tcallawa@redhat.com> 1.4.0-1
- bump to 1.4.0 (resolves bugzilla 243591)
- get rid of static library (.a)
2007-01-17 20:42:00 +00:00
* Wed Jan 17 2007 Tom "spot" Callaway <tcallawa@redhat.com> 1.3.2-1
- bump to 1.3.2
2006-09-11 16:26:28 +00:00
* Mon Sep 11 2006 Tom "spot" Callaway <tcallawa@redhat.com> 1.3.1-2
- FC-6 bump
2006-07-10 12:21:00 +00:00
* Mon Jul 10 2006 Tom "spot" Callaway <tcallawa@redhat.com> 1.3.1-1
- bump to 1.3.1
2006-02-28 21:27:12 +00:00
* Tue Feb 28 2006 Tom "spot" Callaway <tcallawa@redhat.com> 1.3.0-2
- bump for FC-5 rebuild
2005-09-05 02:54:37 +00:00
* Sun Sep 4 2005 Tom "spot" Callaway <tcallawa@redhat.com> 1.3.0-1
- include LICENSE text
- bump to 1.3.0
* Tue May 31 2005 Tom "spot" Callaway <tcallawa@redhat.com> 1.2.1-4
2005-05-31 14:43:59 +00:00
- use dist tag to prevent EVR overlap
* Fri Apr 22 2005 Tom "spot" Callaway <tcallawa@redhat.com> 1.2.1-2
- fix license (MIT, not LGPL)
- get rid of libcares.la
* Fri Apr 22 2005 Tom "spot" Callaway <tcallawa@redhat.com> 1.2.1-1
- initial package creation