comparison gaim.spec.in @ 322:8ed366802f2e

[gaim-migrate @ 332] Made adjustments to how rpm .spec file works, and added new default plugin, and added plugins to RPM. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Fri, 02 Jun 2000 21:13:31 +0000
parents
children 9e7d74bc5474
comparison
equal deleted inserted replaced
321:14e78d939990 322:8ed366802f2e
1 %define name @PACKAGE@
2 %define version @VERSION@
3 %define release 1
4 %define serial 1
5 %define prefix /usr
6
7 Summary: A client compatible with AOL's 'Instant Messenger'
8 Name: %{name}
9 Version: %{version}
10 Release: %{release}
11 Serial: %{serial}
12 Copyright: GPL
13 Group: Applications/Internet
14 Vendor: Pimpin' Penguins
15 Url: http://www.marko.net/gaim/
16 Source: %{name}-%{version}.tar.gz
17 BuildRoot: /var/tmp/%{name}-%{version}-root
18 Requires: gtk+ >= 1.2.3
19
20 %description
21 Gaim allows you to talk to anyone using AOL's
22 Instant Messenger service (you can sign up at http://www.aim.aol.com).
23
24 It uses the TOC version of the AOL protocol, so your buddy list is
25 stored on AOL's servers and can be retrieved from anywhere.
26
27 It contains many of the same features as AOL's IM client while at
28 the same time incorporating many new features.
29
30 %prep
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 README.plugins ChangeLog
46 %{prefix}/lib/gaim/*
47
48 %clean
49 rm -r $RPM_BUILD_ROOT