Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
5131 clevermous 1
#!/bin/sh
2
# Generate quake-hipnotic.spec
3
# $1 is version
4
# $2 is release
5
# $3 is install dir (assumed to be in /var/tmp)
6
cat <
7
%define name quake-hipnotic
8
%define version ${1}
9
%define release ${2}
10
%define builddir \$RPM_BUILD_DIR/%{name}-%{version}
11
Name:		%{name}
12
Version:	%{version}
13
Release:	%{release}
14
Vendor:		id Software/Ritual Entertainment
15
Packager:	Dave "Zoid" Kirsch 
16
URL:		http://www.ritual.com/
17
Source:		quake-hipnotic-%{version}.tar.gz
18
BuildArchitectures: noarch
19
Group:		Games
20
Copyright:	Restricted
21
Icon:		quake.gif
22
BuildRoot:	/var/tmp/%{name}-%{version}
23
Summary:	Quake Hipnotic Mission Pack #1: Scourge of Armagon
24
 
25
%description
26
 
27
The Scourge of Armagon is the highly acclaimed mission pack for id Software's
28
Quake. Scourge offers 3 new episodes that continue off where Quake ended. Add
29
some incredible new effects such as rotating doors and objects, new creatures
30
to battle, and new weapons and powerups to assist you in these battles.
31
 
32
Looking for a way to breath some new life into Quake? Get Mission Pack #1:
33
Scourge of Armagon.
34
 
35
Here is a breakdown of exactly what you will get inside Scourge of Armagon:
36
 
37
18 Beastly Levels
38
Strafe and slaughter your way through 18 levels contained in three
39
monster-infested episodes. Fight your way through the intense Military
40
Base and Research Facilities, sneak around in the Ancient Realm, and dash
41
into the final domain controlled by Armagon. You’ll also be able to tear
42
your friends apart in an all-new DeathMatch level: Edge of Oblivion.
43
 
44
All-New Flesh-Ripping Demons
45
Gremlins: Small, blood-thirsty creatures that attack in swarms and can even
46
steal your weapons. Watch out or these little bastards will turn them back on
47
you!
48
 
49
Centroids: Armor-plated scorpion cyborgs with two nail guns fused to their
50
monstrous bodies. These bad boy monsters can shred you to bits in just
51
seconds.
52
 
53
Armagon: This is the father of all monsters. This huge metallic behemoth will
54
rock your world with rockets and laser fire, so be prepared to die.
55
 
56
Never-Before-Seen Weapons
57
Mjolnir: When this war hammer pounds the floor, it fires an electrical force
58
along the ground, striking and shocking several enemies with its lethal
59
current.
60
 
61
Laser Cannon: Disintegrate scores of creatures with scorching laser blasts.
62
Use the rebounding properties of this weapon to tag your enemies around
63
corners.
64
 
65
Proximity Mines: Gameplay reaches new heights with motion sensitive mines.
66
Plant these nasty toys on walls, floors, or even the ceiling and watch as
67
unsuspecting foes are blown into little bits.
68
 
69
Inventive New Powerups
70
Empathy Shield: This shield allows you to turn the table on those unwitting
71
opponents. Whatever damage you take they receive half of it back in kind.
72
 
73
Horn of Conjuring: Blow this horn and out of the mystical bowels of eternity
74
a new ally will appear. This horn allows you to call upon any of the
75
creatures in the game to come to your aid in the fight against Armagon.
76
 
77
Wet Suit: What better way to survive under water longer. Not only that, those
78
flippers help speed you along as you paddle your way through the dangers that
79
lucky deep under the surface of those calm waters.
80
 
81
Environmental Dangers
82
Undertake atmospheric nightmares like lightning traps, floating spike mines,
83
gondolas, outdoor environments and stunning architecture never seen before in
84
Quake. Travel through the dangerous and treacherous mines under the Military
85
Base. Creep through the catacombs and dark cathedrals that lie in wait for
86
you in the Ancient Realms. Swallow your fear as you wind our way through the
87
immense fortress that protect the Lair of Armagon.
88
 
89
System Requirements
90
 
91
Full Version of QUAKE required to operate.
92
CD ROM drive required for Installation
93
Linux 2.0
94
16 MB RAM
95
Hard Disk Space: 40 MB for Mission Pack
96
VGA & SVGA graphics support
97
Mouse support (3 Button Mouse recommended)
98
Supports IP (Internet) play
99
 
100
%install
101
 
102
%files
103
%attr(644,root,root) $3/hipnotic/pak0.pak
104
%attr(644,root,root) $3/hipnotic/config.cfg
105
%attr(644,root,root) $3/hipnotic/docs/manual.doc
106
%attr(644,root,root) $3/hipnotic/docs/manual.htm
107
%attr(644,root,root) $3/hipnotic/docs/manual.txt
108
%attr(644,root,root) $3/hipnotic/docs/readme.doc
109
%attr(644,root,root) $3/hipnotic/docs/readme.htm
110
%attr(644,root,root) $3/hipnotic/docs/readme.txt
111
 
112
EOF
113