source: projects/specs/branches/6/lib/libr/librelp/librelp-vl.spec @ 2563

Revision 2563, 2.1 KB checked in by iwaim, 13 years ago (diff)

librelp 1.0.0-1

Line 
1Summary: The Reliable Event Logging Protocol library
2Name: librelp
3Version: 1.0.0
4Release: 1%{?_dist_release}
5License: GPLv3+
6Group: System Environment/Libraries
7URL: http://www.rsyslog.com/
8Source0: http://download.rsyslog.com/librelp/%{name}-%{version}.tar.gz
9Requires(post): /sbin/ldconfig
10Requires(postun): /sbin/ldconfig
11BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
12
13%description
14Librelp is an easy to use library for the RELP protocol. RELP (stands
15for Reliable Event Logging Protocol) is a general-purpose, extensible
16logging protocol.
17
18%package devel
19Summary: Development files for the %{name} package
20Group: Development/Libraries
21Requires: %{name} = %{version}-%{release}
22Requires: pkgconfig
23
24%description devel
25Librelp is an easy to use library for the RELP protocol. The
26librelp-devel package contains the header files and libraries needed
27to develop applications using librelp.
28
29%prep
30%setup -q
31
32%build
33%configure --disable-static
34make %{?_smp_mflags}
35
36%install
37rm -rf $RPM_BUILD_ROOT
38make install DESTDIR=$RPM_BUILD_ROOT
39
40rm $RPM_BUILD_ROOT/%{_libdir}/*.la
41
42%clean
43rm -rf $RPM_BUILD_ROOT
44
45%post -p /sbin/ldconfig
46
47%postun
48if [ "$1" = "0" ] ; then
49    /sbin/ldconfig
50fi
51
52%files
53%defattr(-,root,root,-)
54%doc AUTHORS COPYING NEWS README doc/*html
55%{_libdir}/librelp.so.*
56
57%files devel
58%defattr(-,root,root)
59%{_includedir}/*
60%{_libdir}/librelp.so
61%{_libdir}/pkgconfig/relp.pc
62
63%changelog
64* Wed Dec 22 2010 IWAI, Masaharu <iwai@alib.jp> 1.0.0-1
65- build for Vine Linux: based Fedora 1.0.0-1.fc14
66
67* Thu Jul 15 2010 Tomas Heinrich <theinric@redhat.com> - 1.0.0-1
68- upgrade to upstream version 1.0.0
69
70* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.1-4
71- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
72
73* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.1-3
74- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
75
76* Wed May  7 2008 Tomas Heinrich <theinric@redhat.com> 0.1.1-2
77- removed "BuildRequires: autoconf automake"
78
79* Tue Apr 29 2008 Tomas Heinrich <theinric@redhat.com> 0.1.1-1
80- initial build
Note: See TracBrowser for help on using the repository browser.