wok rev 19296

Add AstroMenace Game
author Leonardo Laporte <hackdorte@sapo.pt>
date Sat Jul 09 05:20:59 2016 -0300 (2016-07-09)
parents f86d053a0423
children 8ae0a3d6a06f
files astromenace/description.txt astromenace/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/astromenace/description.txt	Sat Jul 09 05:20:59 2016 -0300
     1.3 @@ -0,0 +1,40 @@
     1.4 +AstroMenace v1.3.2
     1.5 +
     1.6 +AstroMenace is a brilliant 3d scroll-shooter allowing you to feel the adrenalin
     1.7 +rush of a fierce space battle against relentless swarms of alien invaders.
     1.8 +Immerse into a decisive battle against tons of cunning foes, face the terrifying
     1.9 +bosses and protect your homeland throughout 15 diverse levels of the game. The
    1.10 +hardcore gameplay of AstroMenace, packed with pure non-stop action, will become
    1.11 +a full scale test for your basic instinct of survival.
    1.12 +
    1.13 +AstroMenace shines with stunning special effects which in combination with superb
    1.14 +3d graphics guarantee that the game will feast the eyes of even most experienced
    1.15 +arcade players. The quality of visuals ensures that the demonstration of your
    1.16 +superior power and new weaponry will look really impressive and awesome, so the
    1.17 +destruction of foes is a truly amazing sight.
    1.18 +
    1.19 +The game provides a wide variety of armaments and weapon upgrades for discharging
    1.20 +the retributive wrath upon the hordes of enemies, besides it has a great number
    1.21 +of improvements for enhancing the defensive abilities of your spaceship. Collect
    1.22 +money during the combat and invest them into turning your spaceship into an
    1.23 +ultimate weapon of mass destruction.
    1.24 +
    1.25 +AstroMenace offers a variety to the gameplay by providing it with two different
    1.26 +control styles, simulator and arcade. It's up to you to decide, whether to
    1.27 +concentrate on inflicting damage and make total carnage or involve some skillful
    1.28 +maneuvering to the flight. Along with different navigation systems there are 22
    1.29 +playable ships each with its own specific characteristics.
    1.30 +
    1.31 +What's more AstroMenace comes with a convenient system of pilot profiles that
    1.32 +redeems from a save\load routine and a handy interface creating auspicious gaming
    1.33 +conditions. Also it has rich difficulty options where you can precisely define
    1.34 +the game complexity. If you'd like to become a legendary Galaxy liberator and an
    1.35 +honored space fighter, then get AstroMenace and prove to these arrogant aliens
    1.36 +that humans are of higher evolutionary grade.
    1.37 +
    1.38 +SYSTEM REQUIREMENTS
    1.39 +
    1.40 +- Pentium 1+ GHz 128 MB RAM.
    1.41 +- 3D video accelerator with 32+ MB on board.
    1.42 +
    1.43 +http://viewizard.com/
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/astromenace/receipt	Sat Jul 09 05:20:59 2016 -0300
     2.3 @@ -0,0 +1,69 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="astromenace"
     2.7 +VERSION="1.3.2"
     2.8 +CATEGORY="games"
     2.9 +SHORT_DESC="Hardcore 3D space shooter with spaceship upgrade possibilities."
    2.10 +MAINTAINER="hackdorte@sapo.pt"
    2.11 +LICENSE="GPL3"
    2.12 +TARBALL="$PACKAGE-src-$VERSION.tar.bz2"
    2.13 +
    2.14 +WEB_SITE="http://viewizard.com/astromenace/index_linux.php"
    2.15 +WGET_URL="$SF_MIRROR/openastromenace/$TARBALL"
    2.16 +
    2.17 +TAGS="arcade game"
    2.18 +
    2.19 +DEPENDS="libsdl libogg libvorbis libglu-mesa openal freealut \
    2.20 +xorg-libXinerama freetype"
    2.21 +
    2.22 +BUILD_DEPENDS="libsdl-dev libogg-dev libvorbis-dev libglu-mesa-dev \
    2.23 +openal-dev freealut-dev xorg-libXinerama-dev freetype-dev cmake"
    2.24 +
    2.25 +# Rules to configure and make the package.
    2.26 +compile_rules()
    2.27 +{
    2.28 +
    2.29 +cmake ./
    2.30 +make
    2.31 +
    2.32 +}
    2.33 +
    2.34 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.35 +genpkg_rules()
    2.36 +{
    2.37 +
    2.38 +GAME="AstroMenace"
    2.39 +GAME_DIR="usr/games/$GAME"
    2.40 +
    2.41 +mkdir -p $install/$GAME_DIR
    2.42 +cd $src && ./$GAME --pack --rawdata=./RAW_VFS_DATA
    2.43 +
    2.44 +chmod +x $src/$GAME
    2.45 +
    2.46 +cp -a $src/$GAME $install/$GAME_DIR
    2.47 +cp -a $src/astromenace_64.png $install/$GAME_DIR
    2.48 +cp -a $src/astromenace_128.png $install/$GAME_DIR
    2.49 +cp -a $src/ChangeLog.txt $install/$GAME_DIR
    2.50 +cp -a $src/gamedata.vfs $install/$GAME_DIR
    2.51 +cp -a $src/gpl-3.0.txt $install/$GAME_DIR
    2.52 +
    2.53 +mkdir -p $install/usr/share/pixmaps
    2.54 +cp -a $src/astromenace_64.png $install/usr/share/pixmaps/astromenace.png
    2.55 +
    2.56 +mkdir -p $install/usr/share/applications
    2.57 +cat > $install/usr/share/applications/astromenace.desktop << EOT
    2.58 +[Desktop Entry]
    2.59 +Type=Application
    2.60 +Name=$GAME
    2.61 +Exec=/$GAME_DIR/$GAME
    2.62 +Icon=$PACKAGE
    2.63 +Terminal=false
    2.64 +X-MultipleArgs=false
    2.65 +StartupNotify=false
    2.66 +Categories=Game;ActionGame;
    2.67 +
    2.68 +EOT
    2.69 +
    2.70 +cp -a $install/* $fs
    2.71 +
    2.72 +}