1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
%define version @VERSION@
%define name libyahoo
Summary: Yahoo! Messenger Connectivity Library
Name: %{name}
Version: %{version}
Release: 1
Copyright: GPL
Group: Networking/Chat
Source: http://prdownloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
Url: http://%{name}.sourceforge.net/
BuildRoot: %{_tmppath}/%{name}-buildroot
Prefix: %{_prefix}
%description
This is libyahoo, a GPL'd connectivity library that works with Yahoo!'s
Instant Messenging client Messenger.
This software has been developed without the assistance, consent, or
support of Yahoo! Inc.
They are not to be contacted regarding this product.
No guarantees are provided that this product will continue to function if
they change the protocol.
It is written and maintained by Nathan Neulinger <nneul@users.sourceforge.net>
and Craig Emery <ranec@users.sourceforge.net> If you have any questions about
this RPM package please send them to the %{name} mailing list.
Info is available from the %{name} web page.
%prep
%setup
%build
CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS"
./configure --prefix=%{_prefix} --with-debug
make
%install
rm -rf $RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT%{_prefix}/{include/%{name},lib,bin}
make DESTDIR=$RPM_BUILD_ROOT install
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%doc AUTHORS COPYING ChangeLog INSTALL NEWS README NOTES protocol.txt
%{prefix}/include/%{name}/%{name}.h
%{prefix}/include/%{name}/%{name}-proto.h
%{prefix}/include/%{name}/%{name}-debug.h
%{prefix}/bin/%{name}-config
%{prefix}/lib/%{name}.*
%changelog
* Tue Jan 21 2002 Craig Emery <ranec@users.sourceforge.net>
- Fixed for install of new libtool build
* Tue Jul 03 2001 Craig Emery <ranec@users.sourceforge.net>
- created
|