-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquake2.spec.in
56 lines (46 loc) · 1.53 KB
/
quake2.spec.in
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
Name: @PACKAGE@
Summary: improved version of id Software's classic Quake II engine
Version: @VERSION@
Release: 3
Group: Amusements/Games
Copyright: GPL
Vendor: The QuakeForge Project
URL: http://www.quakeforge.net/
Packager: Paul Jenner <[email protected]>
Source: http://osdn.dl.sourceforge.net/sourceforge/quake/@PACKAGE@-@[email protected]
BuildRoot: /var/tmp/%{name}-%{version}-buildroot
Prefix: %{_prefix}
%description
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).
%prep
rm -rf $RPM_BUILD_ROOT
%setup -q
%build
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix} \
--disable-opt --disable-asm
make
%install
make install-strip DESTDIR=$RPM_BUILD_ROOT
%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
* Tue Dec 24 2002 Jamie Wilkinson <[email protected]>
- Updated description and summary.
* Mon Dec 23 2002 Paul Jenner <[email protected]>
- Fixed install path using DESTDIR
* Mon Dec 23 2002 Paul Jenner <[email protected]>
- Initial spec file