quake-hipnotic.spec.sh 4.2 KB

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