comparison gaim.spec @ 0:a5ace2e037bc

Tailorization Import of the upstream sources from Repository: https://svn.sourceforge.net/svnroot/gaim Kind: svn Module: /trunk Revision: 9
author Tailor Script <tailor@pidgin.im>
date Thu, 23 Mar 2000 03:09:51 +0000
parents
children 4ef7951a2503
comparison
equal deleted inserted replaced
-1:000000000000 0:a5ace2e037bc
1 %define name gaim
2 %define version 0.9.11
3 %define release 1
4 %define prefix /usr
5
6 Summary: A client compatible with AOL's 'Instant Messenger'
7
8 Name: %{name}
9 Version: %{version}
10 Release: %{release}
11 Group: Applications/Internet
12 Copyright: GPL
13
14 Url: http://marko.net/gaim
15 Packager: rflynn@blueridge.net
16 Source: ftp://ftp.marko.net/pub/gaim/gaim-%{version}.tar.gz
17 Buildroot: /var/tmp/%{name}-%{version}-%{release}-root
18
19 %description
20 Gaim allows you to talk to anyone using AOL's
21 Instant Messenger service (you can sign up at http://www.aim.aol.com).
22
23 It uses the TOC version of the AOL protocol, so your buddy list is
24 stored on AOL's servers and can be retrieved from anywhere.
25
26 It contains many of the same features as AOL's IM client while at
27 the same time incorporating many new features.
28
29 %prep
30
31 %setup
32
33 %build
34 CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix}
35 make
36
37 %install
38 if [ -d $RPM_BUILD_ROOT ]; then rm -r $RPM_BUILD_ROOT; fi
39 mkdir -p $RPM_BUILD_ROOT%{prefix}
40 make prefix=$RPM_BUILD_ROOT%{prefix} install-strip
41
42 %files
43 %defattr(-,root,root)
44 %attr(755,root,root) %{prefix}/bin/gaim
45 %doc doc/the_penguin.txt doc/PROTOCOL doc/CREDITS NEWS COPYING AUTHORS doc/FAQ README ChangeLog
46
47 %clean
48 rm -r $RPM_BUILD_ROOT
49