Mercurial > pidgin.yaz
annotate gaim.spec.in @ 448:737dc468d778
[gaim-migrate @ 458]
Pretty.
committer: Tailor Script <tailor@pidgin.im>
author | Rob Flynn <gaim@robflynn.com> |
---|---|
date | Fri, 30 Jun 2000 03:54:36 +0000 |
parents | cf895313fc50 |
children | 8086ed233742 |
rev | line source |
---|---|
322 | 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/* | |
369
cf895313fc50
[gaim-migrate @ 379]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
326
diff
changeset
|
47 %{prefix}/share/locale/*/*/* |
325 | 48 %{prefix}/share/pixmaps/gaim.xpm |
326 | 49 %{prefix}/share/gnome/apps/Internet/gaim.desktop |
322 | 50 %clean |
51 rm -r $RPM_BUILD_ROOT |