2002-12-24 00:19:15 +00:00
|
|
|
Name: @PACKAGE@
|
2002-12-24 01:47:33 +00:00
|
|
|
Summary: improved version of id Software's classic Quake II engine
|
2002-12-24 00:19:15 +00:00
|
|
|
Version: @VERSION@
|
2002-12-24 00:49:28 +00:00
|
|
|
Release: 3
|
2002-12-24 00:19:15 +00:00
|
|
|
Group: Amusements/Games
|
|
|
|
Copyright: GPL
|
2002-12-24 00:46:29 +00:00
|
|
|
Vendor: The QuakeForge Project
|
|
|
|
URL: http://www.quakeforge.net/
|
2002-12-24 00:19:15 +00:00
|
|
|
Packager: Paul Jenner <psj.home@ntlworld.com>
|
2002-12-24 00:46:29 +00:00
|
|
|
Source: http://osdn.dl.sourceforge.net/sourceforge/quake/@PACKAGE@-@VERSION@.tar.gz
|
|
|
|
BuildRoot: /var/tmp/%{name}-%{version}-buildroot
|
2002-12-24 00:19:15 +00:00
|
|
|
Prefix: %{_prefix}
|
|
|
|
|
|
|
|
%description
|
2002-12-24 00:46:29 +00:00
|
|
|
Quake II is the classic first person shooter from id Software. This package
|
|
|
|
contains only the game binaries, you will need to either install the
|
|
|
|
commercial data from the Quake II CD-ROM, or install some free data files
|
|
|
|
(which are available from id Software's FTP site). This game currently
|
|
|
|
supports software rendering with X11, SDL or SVGAlib, and hardware accelerated
|
|
|
|
rendering with OpenGL (directly or with SDL).
|
2002-12-24 00:19:15 +00:00
|
|
|
|
|
|
|
%prep
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
%build
|
|
|
|
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix} \
|
|
|
|
--disable-opt --disable-asm
|
|
|
|
make
|
|
|
|
|
|
|
|
%install
|
2002-12-24 00:26:53 +00:00
|
|
|
make install-strip DESTDIR=$RPM_BUILD_ROOT
|
2002-12-24 00:19:15 +00:00
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%doc HACKING NEWS THANKS TODO AUTHORS README COPYING
|
|
|
|
%{prefix}/bin/*
|
|
|
|
%{prefix}/lib/quake2/*
|
|
|
|
%{prefix}/lib/quake2/baseq2/*
|
|
|
|
%{prefix}/lib/quake2/ctf/*
|
|
|
|
%{prefix}/share/quake2/*
|
|
|
|
%{prefix}/share/quake2/baseq2/*
|
|
|
|
|
|
|
|
%changelog
|
2002-12-24 00:49:28 +00:00
|
|
|
* Tue Dec 24 2002 Jamie Wilkinson <jaq@quakeforge.net>
|
|
|
|
- Updated description and summary.
|
|
|
|
|
2002-12-24 00:19:15 +00:00
|
|
|
* Mon Dec 23 2002 Paul Jenner <psj.home@ntlworld.com>
|
2002-12-24 00:26:53 +00:00
|
|
|
- Fixed install path using DESTDIR
|
2002-12-24 00:19:15 +00:00
|
|
|
|
2002-12-24 00:26:53 +00:00
|
|
|
* Mon Dec 23 2002 Paul Jenner <psj.home@ntlworld.com>
|
|
|
|
- Initial spec file
|