add astromenace game
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/copyleft/gpl.txt
|
||||
|
||||
from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
|
||||
datadir = "/usr/share/%s" % get.srcNAME()
|
||||
|
||||
|
||||
def setup():
|
||||
cmaketools.configure("-DDATADIR=%s" % datadir)
|
||||
|
||||
|
||||
def build():
|
||||
cmaketools.make()
|
||||
shelltools.system("./AstroMenace --pack --rawdata=./RAW_VFS_DATA --dir=./")
|
||||
|
||||
def install():
|
||||
pisitools.dobin("AstroMenace")
|
||||
pisitools.insinto(datadir, "gamedata.vfs")
|
||||
|
||||
|
||||
|
||||
pisitools.dodoc("gpl-3.0.txt", "License.txt", "ReadMe.txt")
|
||||
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Version=1.0
|
||||
Encoding=UTF-8
|
||||
Name=AstroMenace
|
||||
Name[tr]=AstroMenace
|
||||
GenericName=3D Space Simulation
|
||||
GenericName[pl]=Kosmiczna Symulacja 3D
|
||||
GenericName[tr]=3B Uzay Simülasyonu
|
||||
Icon=/usr/share/pixmaps/astromenace_64.png
|
||||
Exec=/usr/bin/AstroMenace
|
||||
Terminal=false
|
||||
StartupNotify=true
|
||||
Categories=Application;Game;ArcadeGame;
|
||||
@@ -0,0 +1,12 @@
|
||||
diff -aur OpenAstroMenaceSVN.pristine/AstroMenaceSource/Core/RendererInterface/RendererInterface.h OpenAstroMenaceSVN.new/AstroMenaceSource/Core/RendererInterface/RendererInterface.h
|
||||
--- OpenAstroMenaceSVN.pristine/AstroMenaceSource/Core/RendererInterface/RendererInterface.h 2010-02-14 11:39:06.721353373 +0100
|
||||
+++ OpenAstroMenaceSVN.new/AstroMenaceSource/Core/RendererInterface/RendererInterface.h 2010-02-14 11:46:47.171304764 +0100
|
||||
@@ -37,6 +37,8 @@
|
||||
#include "../Base.h"
|
||||
#include "../Math/Math.h"
|
||||
#include "../Texture/Texture.h"
|
||||
+#define PFNGLCLIENTACTIVETEXTUREPROC PFNGLACTIVETEXTUREPROC
|
||||
+
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
astromenace_bin --dir=/usr/share/astromenace "$@"
|
||||
BIN
Binary file not shown.
|
After Width: | Height: | Size: 5.9 KiB |
@@ -0,0 +1,68 @@
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>astromenace </Name>
|
||||
<Homepage>http://www.viewizard.com/astromenace/index_linux.php</Homepage>
|
||||
<Packager>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv3</License>
|
||||
<Summary>Hardcore 3D space shooter with spaceship upgrade possibilities</Summary>
|
||||
<Description>AstroMenace stands out for a hardcore gameplay that absorbs you completely as you repel the relentless attacks of diverse adversaries and dodge hails of projectiles.</Description>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>fontconfig-devel</Dependency>
|
||||
<Dependency>freealut-devel</Dependency>
|
||||
<Dependency>freetype-devel</Dependency>
|
||||
<Dependency>libICE-devel</Dependency>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
<Dependency>libXext-devel</Dependency>
|
||||
<Dependency>libogg-devel</Dependency>
|
||||
<Dependency>libsdl-devel</Dependency>
|
||||
<Dependency>libvorbis-devel</Dependency>
|
||||
<Dependency>libXinerama-devel</Dependency>
|
||||
<Dependency>mesa-devel</Dependency>
|
||||
<Dependency>mesa-glu-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Archive sha1sum="a4b5c8c76970fbff0609a59d80402848957aa515" type="tarbz2">https://sourceforge.net/projects/openastromenace/files/1.3.2/astromenace-src-1.3.2.tar.bz2</Archive>
|
||||
<Patches>
|
||||
<Patch level="1">astromenace.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>astromenace </Name>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile group="root" permission="0644" target="/usr/share/applications/astromenace.desktop" owner="root">astromenace.desktop</AdditionalFile>
|
||||
<AdditionalFile group="root" permission="0644" target="/usr/share/pixmaps/astromenace_64.png" owner="root">astromenace_64.png</AdditionalFile>
|
||||
<!--<AdditionalFile group="root" permission="0644" target="/usr/bin/astromenace.sh" owner="root">astromenace.sh</AdditionalFile>-->
|
||||
</AdditionalFiles>
|
||||
<Summary>Hardcore 3D space shooter with spaceship upgrade possibilities</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>fontconfig</Dependency>
|
||||
<Dependency>freetype</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libsdl</Dependency>
|
||||
<Dependency>mesa</Dependency>
|
||||
<Dependency>mesa-glu</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>openal</Dependency>
|
||||
<Dependency>freealut</Dependency>
|
||||
<Dependency>libvorbis</Dependency>
|
||||
<Dependency>libXinerama</Dependency>
|
||||
</RuntimeDependencies>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2018-05-03</Date>
|
||||
<Version>1.3.2</Version>
|
||||
<Comment>First Release</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
+148486
-148417
File diff suppressed because it is too large
Load Diff
@@ -1 +1 @@
|
||||
c6e7621a16af401bb3e1d3ed81885ff3eace6bd7
|
||||
94aaf71421c1c3948014d952ed285017a193b34a
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
4b8f67f3ff2e012f47c94ba06c1e75a623be7000
|
||||
d097635fe7723801be4e413457334a1a1ef9ef69
|
||||
Reference in New Issue
Block a user