~flier-lu/libmemcached/win32-vs2008

« back to all changes in this revision

Viewing changes to support/libmemcached.spec

  • Committer: brian@gir.tangent.org
  • Date: 2007-09-28 15:49:07 UTC
  • Revision ID: brian@gir.tangent.org-20070928154907-zjjwlxygmu3ghswg
Adding in spec file, this has not been tested... committing from my Mac :)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Summary: memcached C library and command line tools
 
2
Name: libmemcached
 
3
Version: 0.2
 
4
Release: 1
 
5
License: BSD
 
6
Group: System Environment/Libraries
 
7
URL: http://tangent.org/552/libmemcached.html
 
8
 
 
9
Packager: Jeff Fisher <guppy@techmonkeys.org>
 
10
 
 
11
Source: http://download.tangent.org/libmemcached-%{version}.tar.gz
 
12
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
 
13
 
 
14
%description
 
15
libmemcached is a C client library to the memcached server
 
16
(http://danga.com/memcached). It has been designed to be light on memory
 
17
usage, and provide full access to server side methods.
 
18
 
 
19
It also implements several command line tools:
 
20
 
 
21
memcat - Copy the value of a key to standard output
 
22
memflush - Flush the contents of your servers.
 
23
memrm - Remove a key(s) from the serrver.
 
24
memstat - Dump the stats of your servers to standard output
 
25
 
 
26
%prep
 
27
%setup -q
 
28
 
 
29
%configure
 
30
 
 
31
%build
 
32
%{__make} %{_smp_mflags}
 
33
 
 
34
%install
 
35
%{__rm} -rf %{buildroot}
 
36
%{__make} install  DESTDIR="%{buildroot}" AM_INSTALL_PROGRAM_FLAGS=""
 
37
 
 
38
%clean
 
39
%{__rm} -rf %{buildroot}
 
40
 
 
41
%files
 
42
%{_bindir}/memcat
 
43
%{_bindir}/memcp
 
44
%{_bindir}/memflush
 
45
%{_bindir}/memrm
 
46
%{_bindir}/memstat
 
47
%{_includedir}/libmemcached/memcached.h
 
48
%{_libdir}/libmemcached.a
 
49
%{_libdir}/libmemcached.la
 
50
%{_libdir}/libmemcached.so
 
51
%{_libdir}/libmemcached.so.0
 
52
%{_libdir}/libmemcached.so.0.0.0
 
53
 
 
54
%changelog
 
55
* Fri Sep 28 2007 Jeff Fisher <guppy@techmonkeys.org> - 0.2-1
 
56
- Initial package