Dust Racing 2D (dustrac) is an open source, tile-based 2D racing game

This commit is contained in:
groni
2015-11-20 16:39:12 +01:00
parent 5079e1b86a
commit 308fb6a24b
8 changed files with 374 additions and 2 deletions
+4
View File
@@ -0,0 +1,4 @@
<PISI>
<Name>game.arcade</Name>
</PISI>
+20
View File
@@ -0,0 +1,20 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import cmaketools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
cmaketools.configure("-DReleaseBuild=1 -DCMAKE_INSTALL_PREFIX=/usr")
def build():
cmaketools.make()
def install():
cmaketools.install()
pisitools.dodoc("AUTHORS", "INSTALL", "CHANGELOG", "COPYING", "README-CHANGELOG.txt", "README")
+56
View File
@@ -0,0 +1,56 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>dustrac</Name>
<Homepage>http://dustrac.sourceforge.net/</Homepage>
<Packager>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Packager>
<License>GPLv3</License>
<IsA>app:gui</IsA>
<Summary>Dust Racing 2D (dustrac) is an open source, tile-based 2D racing game</Summary>
<Description>The purpose of the game is to race against 11 challenging computer players on different race tracks. Finishing in TOP-6 will unlock a new race track. Only a small portion of the race track is visible on the scrolling screen.</Description>
<Archive sha1sum="f6409459beed13870fdfeabc7b76ae334c0d836e" type="targz">https://github.com/juzzlin/DustRacing2D/archive/1.11.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>qt5-base-devel</Dependency>
<Dependency>openal-devel</Dependency>
<Dependency>cmake</Dependency>
<Dependency>pkgconfig</Dependency>
<Dependency>libvorbis-devel</Dependency>
<Dependency>mesa-devel</Dependency>
<Dependency>mesa-glu-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>dustrac</Name>
<RuntimeDependencies>
<Dependency>qt5-base</Dependency>
<Dependency>openal</Dependency>
<Dependency>libvorbis</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>mesa</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share/games</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="application">/usr/share/applications</Path>
<Path fileType="data">/usr/share/icons</Path>
<Path fileType="pixmaps">/usr/share/pixmaps</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2015-11-20</Date>
<Version>1.11.0</Version>
<Comment>First release</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
</History>
</PISI>
+8
View File
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>dustrac</Name>
<Summary xml:lang="en">Dust Racing 2D (dustrac) is an open source, tile-based 2D racing game</Summary>
<Description xml:lang="en">The purpose of the game is to race against 11 challenging computer players on different race tracks. Finishing in TOP-6 will unlock a new race track. Only a small portion of the race track is visible on the scrolling screen.</Description>
</Source>
</PISI>