a1d4b3f3b4802fd4887c22b8e1c36cd5c7656083
[awesomized/libmemcached] / support / libmemcached-fc.spec.in
1 Name: libmemcached
2 Summary: memcached C library and command line tools
3 Version: @VERSION@
4 Release: 1%{?dist}
5 License: BSD
6 Group: System Environment/Libraries
7 URL: http://libmemcached.org/
8 Source0: http://download.tangent.org/libmemcached-%{version}.tar.gz
9
10 # For test suite
11 BuildRequires: memcached
12
13 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
14
15
16 %description
17 libmemcached, http://libmemcached.org/, is a C client library to the memcached server
18 (http://danga.com/memcached). It has been designed to be light on memory
19 usage, and provide full access to server side methods.
20
21 It also implements several command line tools:
22
23 memcat - Copy the value of a key to standard output.
24 memflush - Flush the contents of your servers.
25 memrm - Remove a key(s) from the serrver.
26 memstat - Dump the stats of your servers to standard output.
27 memslap - Generate testing loads on a memcached cluster.
28 memcp - Copy files to memcached servers.
29 memerror - Creates human readable messages from libmemecached error codes.
30
31
32 %package devel
33 Summary: Header files and development libraries for %{name}
34 Group: Development/Libraries
35 Requires: %{name} = %{version}-%{release}
36
37 %description devel
38 This package contains the header files and development libraries
39 for %{name}. If you like to develop programs using %{name},
40 you will need to install %{name}-devel.
41
42
43 %prep
44 %setup -q
45
46 %{__mkdir} examples
47 %{__cp} tests/*.{c,cc,cpp,h} examples/
48
49
50 %build
51 %configure
52 %{__make}
53
54
55 %install
56 %{__rm} -rf %{buildroot}
57 %{__make} install DESTDIR="%{buildroot}" AM_INSTALL_PROGRAM_FLAGS=""
58
59
60 %check
61 # test suite cannot run in mock (same port use for memcache server on all arch)
62 # 1 test seems to fail..
63 #%{__make} test
64
65
66 %clean
67 %{__rm} -rf %{buildroot}
68
69
70 %post -p /sbin/ldconfig
71
72
73 %postun -p /sbin/ldconfig
74
75
76 %files
77 %defattr (-,root,root,-)
78 %doc AUTHORS COPYING NEWS README THANKS TODO
79 %{_bindir}/mem*
80 %exclude %{_libdir}/libmemcached.a
81 %exclude %{_libdir}/libmemcached.la
82 %exclude %{_libdir}/libmemcachedutil.a
83 %exclude %{_libdir}/libmemcachedutil.la
84 %{_libdir}/libmemcached.so.*
85 %{_libdir}/libmemcachedutil.so.*
86 %{_mandir}/man1/mem*
87
88
89 %files devel
90 %defattr (-,root,root,-)
91 %doc examples
92 %{_includedir}/libmemcached
93 %{_libdir}/libmemcached.so
94 %{_libdir}/libmemcachedutil.so
95 %{_libdir}/pkgconfig/libmemcached.pc
96 %{_mandir}/man3/libmemcached*.3.gz
97 %{_mandir}/man3/memcached_*.3.gz
98
99
100 %changelog
101 * Sat Apr 25 2009 Remi Collet <rpms@famillecollet.com> - 0.28-1
102 - Initial RPM from Brian Aker spec
103 - create -devel subpackage
104 - add %%post %%postun %%check section
105