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