# HG changeset patch # User Leonardo Laporte # Date 1468052459 10800 # Node ID 7e01767618fe7ba749ca3d0f6acfeb6d9856c975 # Parent f86d053a042399e339ada06ad0369d00ecc713ea Add AstroMenace Game diff -r f86d053a0423 -r 7e01767618fe astromenace/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/astromenace/description.txt Sat Jul 09 05:20:59 2016 -0300 @@ -0,0 +1,40 @@ +AstroMenace v1.3.2 + +AstroMenace is a brilliant 3d scroll-shooter allowing you to feel the adrenalin +rush of a fierce space battle against relentless swarms of alien invaders. +Immerse into a decisive battle against tons of cunning foes, face the terrifying +bosses and protect your homeland throughout 15 diverse levels of the game. The +hardcore gameplay of AstroMenace, packed with pure non-stop action, will become +a full scale test for your basic instinct of survival. + +AstroMenace shines with stunning special effects which in combination with superb +3d graphics guarantee that the game will feast the eyes of even most experienced +arcade players. The quality of visuals ensures that the demonstration of your +superior power and new weaponry will look really impressive and awesome, so the +destruction of foes is a truly amazing sight. + +The game provides a wide variety of armaments and weapon upgrades for discharging +the retributive wrath upon the hordes of enemies, besides it has a great number +of improvements for enhancing the defensive abilities of your spaceship. Collect +money during the combat and invest them into turning your spaceship into an +ultimate weapon of mass destruction. + +AstroMenace offers a variety to the gameplay by providing it with two different +control styles, simulator and arcade. It's up to you to decide, whether to +concentrate on inflicting damage and make total carnage or involve some skillful +maneuvering to the flight. Along with different navigation systems there are 22 +playable ships each with its own specific characteristics. + +What's more AstroMenace comes with a convenient system of pilot profiles that +redeems from a save\load routine and a handy interface creating auspicious gaming +conditions. Also it has rich difficulty options where you can precisely define +the game complexity. If you'd like to become a legendary Galaxy liberator and an +honored space fighter, then get AstroMenace and prove to these arrogant aliens +that humans are of higher evolutionary grade. + +SYSTEM REQUIREMENTS + +- Pentium 1+ GHz 128 MB RAM. +- 3D video accelerator with 32+ MB on board. + +http://viewizard.com/ diff -r f86d053a0423 -r 7e01767618fe astromenace/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/astromenace/receipt Sat Jul 09 05:20:59 2016 -0300 @@ -0,0 +1,69 @@ +# SliTaz package receipt. + +PACKAGE="astromenace" +VERSION="1.3.2" +CATEGORY="games" +SHORT_DESC="Hardcore 3D space shooter with spaceship upgrade possibilities." +MAINTAINER="hackdorte@sapo.pt" +LICENSE="GPL3" +TARBALL="$PACKAGE-src-$VERSION.tar.bz2" + +WEB_SITE="http://viewizard.com/astromenace/index_linux.php" +WGET_URL="$SF_MIRROR/openastromenace/$TARBALL" + +TAGS="arcade game" + +DEPENDS="libsdl libogg libvorbis libglu-mesa openal freealut \ +xorg-libXinerama freetype" + +BUILD_DEPENDS="libsdl-dev libogg-dev libvorbis-dev libglu-mesa-dev \ +openal-dev freealut-dev xorg-libXinerama-dev freetype-dev cmake" + +# Rules to configure and make the package. +compile_rules() +{ + +cmake ./ +make + +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + +GAME="AstroMenace" +GAME_DIR="usr/games/$GAME" + +mkdir -p $install/$GAME_DIR +cd $src && ./$GAME --pack --rawdata=./RAW_VFS_DATA + +chmod +x $src/$GAME + +cp -a $src/$GAME $install/$GAME_DIR +cp -a $src/astromenace_64.png $install/$GAME_DIR +cp -a $src/astromenace_128.png $install/$GAME_DIR +cp -a $src/ChangeLog.txt $install/$GAME_DIR +cp -a $src/gamedata.vfs $install/$GAME_DIR +cp -a $src/gpl-3.0.txt $install/$GAME_DIR + +mkdir -p $install/usr/share/pixmaps +cp -a $src/astromenace_64.png $install/usr/share/pixmaps/astromenace.png + +mkdir -p $install/usr/share/applications +cat > $install/usr/share/applications/astromenace.desktop << EOT +[Desktop Entry] +Type=Application +Name=$GAME +Exec=/$GAME_DIR/$GAME +Icon=$PACKAGE +Terminal=false +X-MultipleArgs=false +StartupNotify=false +Categories=Game;ActionGame; + +EOT + +cp -a $install/* $fs + +}