mirror of
https://github.com/archlinux/aur.git
synced 2026-02-28 02:03:14 +01:00
Initial import
This commit is contained in:
commit
7d09fd9b71
3 changed files with 67 additions and 0 deletions
24
.SRCINFO
Normal file
24
.SRCINFO
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
pkgbase = tileracer
|
||||
pkgdesc = 3D stunt racing game which features realistic car physics and an in game track editor
|
||||
pkgver = 0.702
|
||||
pkgrel = 3
|
||||
url = http://tileracer.model-view.com
|
||||
arch = i686
|
||||
arch = x86_64
|
||||
license = None
|
||||
conflicts = physx
|
||||
conflicts = lib32-physx
|
||||
noextract = mirrordownload.php?file=TileRacer0.702.tar.gz
|
||||
source = http://tileracer.model-view.com/mirrordownload.php?file=TileRacer0.702.tar.gz
|
||||
source = TileRacer.desktop
|
||||
md5sums = c9d1d9fcc835aaf07933b7608f03d542
|
||||
md5sums = b81904a3a0a59df5ce5631a8f2f89fae
|
||||
depends_i686 = libgl
|
||||
depends_i686 = mesa
|
||||
depends_i686 = libxmu
|
||||
depends_x86_64 = lib32-libgl
|
||||
depends_x86_64 = lib32-mesa
|
||||
depends_x86_64 = lib32-libxmu
|
||||
|
||||
pkgname = tileracer
|
||||
|
||||
34
PKGBUILD
Normal file
34
PKGBUILD
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
# Maintainer: Ashley Whetter <(firstname) @ awhetter.co.uk>
|
||||
# Contributor: Patrik Ilg <p.ilg@arcor.de>
|
||||
|
||||
pkgname=tileracer
|
||||
pkgver=0.702
|
||||
pkgdesc="3D stunt racing game which features realistic car physics and an in game track editor"
|
||||
pkgrel=3
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://tileracer.model-view.com"
|
||||
license=('None')
|
||||
depends_x86_64=('lib32-libgl' 'lib32-mesa' 'lib32-libxmu')
|
||||
depends_i686=('libgl' 'mesa' 'libxmu')
|
||||
conflicts=('physx' 'lib32-physx')
|
||||
source=(http://tileracer.model-view.com/mirrordownload.php?file=TileRacer${pkgver}.tar.gz TileRacer.desktop)
|
||||
md5sums=('c9d1d9fcc835aaf07933b7608f03d542'
|
||||
'b81904a3a0a59df5ce5631a8f2f89fae')
|
||||
noextract=(mirrordownload.php?file=TileRacer${pkgver}.tar.gz)
|
||||
|
||||
package()
|
||||
{
|
||||
cd "$srcdir/"
|
||||
|
||||
install -d "$pkgdir/usr/share/applications"
|
||||
install -m655 "$srcdir/TileRacer.desktop" "$pkgdir/usr/share/applications/"
|
||||
install -d "$pkgdir/usr/share/${pkgname}"
|
||||
|
||||
tar xzvf mirrordownload.php?file=TileRacer${pkgver}.tar.gz -C "$pkgdir/usr/share/${pkgname}"
|
||||
chown -Rh root:root $pkgdir/usr/share/${pkgname}
|
||||
|
||||
install -d $pkgdir/usr/bin
|
||||
echo \#\!/bin/sh > $pkgdir/usr/bin/tileracer
|
||||
echo /usr/share/tileracer/TileRacer.sh >> $pkgdir/usr/bin/tileracer
|
||||
chmod +x $pkgdir/usr/bin/tileracer
|
||||
}
|
||||
9
TileRacer.desktop
Normal file
9
TileRacer.desktop
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Name=Tile Racer 0.702
|
||||
Comment=The ultimate stunt racing game
|
||||
Exec=/usr/share/tileracer/TileRacer.sh
|
||||
Icon=/usr/share/tileracer/TileRacer128.png
|
||||
Terminal=0
|
||||
Type=Application
|
||||
Categories=Application;Game;X-Red-Hat-Base;
|
||||
Loading…
Add table
Reference in a new issue