blob: a05b1d0e70e9f671cb8aa8ff4ec252522593b1bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
Name : librabbitmq
Version : 0.2.0
Release : 1.20120620git83c5c6a2
Summary : RabbitMQ C AMQP client library
Group : Development/Libraries
Source0 : %{name}-%{version}.tar.gz
URL : https://github.com/alanxz/rabbitmq-c
License : MIT
Packager : Matt Dainty <matt@bodgit-n-scarper.com>
BuildRoot : %{_tmppath}/%{name}-%{version}-root
%if %{?el5:1}0
BuildRequires : popt
BuildRequires : python-simplejson
%else
BuildRequires : popt-devel
%endif
BuildRequires : xmlto
%description
RabbitMQ C AMQP client library
%package devel
Summary: Development files for the librabbitmq package
Group: Development/Libraries
Requires: %{name} = %{version}
%description devel
RabbitMQ C AMQP client library. This package contains files needed to
develop applications using librabbitmq.
%package tools
Summary: Example tools built using the librabbitmq package
Group: Development/Libraries
Requires: %{name} = %{version}
%description tools
RabbitMQ C AMQP client library. This package contains example tools
built using librabbitmq.
%prep
%setup -q
%build
%configure
%{__make} %{?_smp_mflags}
%install
%{__rm} -rf %{buildroot}
%makeinstall
%clean
%{__rm} -rf %{buildroot}
%files
%defattr(-,root,root)
%doc AUTHORS LICENSE-MIT THANKS TODO
%{_libdir}/librabbitmq.so.*
%files devel
%defattr(-,root,root)
#%{_libdir}/librabbitmq.a
%{_libdir}/librabbitmq.la
%{_libdir}/librabbitmq.so
%{_libdir}/pkgconfig/librabbitmq.pc
%{_includedir}/amqp.h
%{_includedir}/amqp_framing.h
%files tools
%defattr(-,root,root)
%{_bindir}/amqp-*
%doc %{_mandir}/man1/amqp-*.1*
%doc %{_mandir}/man7/librabbitmq-tools.7.gz
%changelog
* Wed Jun 20 2012 Matt Dainty <matt@bodgit-n-scarper.com> 0.2.0-1.20120620git83c5c6a2
- Bump to 0.2.0-1.20120620git83c5c6a2.
* Sun Feb 19 2012 Matt Dainty <matt@bodgit-n-scarper.com> 0.0.1-2.20120121hg281
- Fix build dependency for el5.
* Sat Jan 21 2012 Matt Dainty <matt@bodgit-n-scarper.com> 0.0.1-1.20120121hg281
- Initial version 0.0.1-1.20120121hg281.
|