view gaim.spec @ 112:a57fd3390ee4

[gaim-migrate @ 122] Fixed the bug where if there is more than one word either being removed or inserted, remaining checks hold. E.g. if there is a rule that 'm' gets replaced with 'your roommate' (this is actually is one of my rules), and another rule is 'u' -> 'you', typing "m u" used to be "your roommate u", but is now "your roommate you" (don't ask, it's a stupid example, but it has implications). committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Fri, 14 Apr 2000 06:02:26 +0000
parents 4cef3d250f3c
children 91d3dfac9c6e
line wrap: on
line source

%define name gaim
%define version 0.9.14
%define release 1
%define prefix /usr

Summary: A client compatible with AOL's 'Instant Messenger'

Name: %{name}
Version: %{version}
Release: %{release}
Group: Applications/Internet
Copyright: GPL

Url: http://marko.net/gaim
Packager: rflynn@blueridge.net 
Source: ftp://ftp.marko.net/pub/gaim/gaim-%{version}.tar.gz
Buildroot: /var/tmp/%{name}-%{version}-%{release}-root

%description
Gaim allows you to talk to anyone using AOL's 
Instant Messenger service (you can sign up at http://www.aim.aol.com).  

It uses the TOC version of the AOL protocol, so your buddy list is 
stored on AOL's servers and can be retrieved from anywhere.

It contains many of the same features as AOL's IM client while at
the same time incorporating many new features.

%prep

%setup

%build
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix}
make

%install
if [ -d $RPM_BUILD_ROOT ]; then rm -r $RPM_BUILD_ROOT; fi
mkdir -p $RPM_BUILD_ROOT%{prefix}
make prefix=$RPM_BUILD_ROOT%{prefix} install-strip

%files
%defattr(-,root,root)
%attr(755,root,root) %{prefix}/bin/gaim
%doc doc/the_penguin.txt doc/PROTOCOL doc/CREDITS NEWS COPYING AUTHORS doc/FAQ README ChangeLog

%clean
rm -r $RPM_BUILD_ROOT