source: projects/specs/trunk/lib/liba/libasyncns/libasyncns-vl.spec @ 1897

Revision 1897, 1.6 KB checked in by Takemikaduchi, 14 years ago (diff)

rebuild with rpm-4.8.1

Line 
1Summary: Asynchronous Name Service Library
2Summary(ja): 非同期ネームサービスライブラリ
3
4Name: libasyncns
5Version: 0.4
6Release: 2%{?_dist_release}
7Group: System Environment/Libraries
8Source0: http://0pointer.de/lennart/projects/libasyncns/libasyncns-%{version}.tar.gz
9License: LGPLv2+
10Url: http://0pointer.de/lennart/projects/libasyncns/
11BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
12
13%description
14A small and lightweight library that implements easy to use asynchronous
15wrappers around the libc NSS functions getaddrinfo(), res_query() and related.
16
17%package devel
18Summary: Development Files for libasyncns Client Development
19Summary(ja): %{name} クライアント用の開発ファイル
20Group: Development/Libraries
21Requires: %{name} = %{version}-%{release}
22Requires: pkgconfig
23
24%description devel
25Development Files for libasyncns Client Development
26
27%post -p /sbin/ldconfig
28%postun -p /sbin/ldconfig
29
30%prep
31%setup -q
32
33%build
34%configure --disable-static --disable-rpath
35make
36
37%install
38rm -rf $RPM_BUILD_ROOT
39make DESTDIR=$RPM_BUILD_ROOT install
40find $RPM_BUILD_ROOT \( -name *.a -o -name *.la \) -exec rm {} \;
41
42%clean
43rm -rf $RPM_BUILD_ROOT
44
45%files
46%defattr(-,root,root)
47%doc README LICENSE
48%{_libdir}/libasyncns.so.*
49
50%files devel
51%defattr(-,root,root)
52%{_includedir}/asyncns.h
53%{_libdir}/libasyncns.so
54%{_libdir}/pkgconfig/libasyncns.pc
55
56%changelog
57* Sat Sep 25 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.4-2
58- rebuild with rpm-4.8.1 for pkg-config file
59
60* Tue Sep 30 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.4-1
61- initial build for Vine Linux
62
63* Sun Jul 27 2008 Lennart Poettering <lpoetter@redhat.com> 0.4-1
64- Initial packaging
Note: See TracBrowser for help on using the repository browser.