blob: fb1e1fdde13ef94e6ca7d029bae3fc6b8c3cb06d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# Maintainer: baboon
pkgname="speed-dreams-bin"
pkgver=2.4.1
pkgrel=1
pkgdesc="Speed Dreams is a fork of TORCS which aims to implement exciting new features, improving visual and physics realism. "
arch=('x86_64')
url="https://speed-dreams.net/"
license=('GPL3')
depends=(
speed-dreams-data
glibc
cjson
libcurl-gnutls
enet
expat
gcc-libs
freeglut
libglvnd
libjpeg6-turbo
minizip
freealut
mesa
openscenegraph
libpng
rhash
sdl2_mixer
libstdc++5
zlib
libxi
libxmu
libxrandr
libarchive
libplib-bin)
conflicts=('speed-dreams-svn' 'speed-dreams-git' 'speed-dreams-appimage' 'speed-dreams')
provides=('speed-dreams')
source=("https://files.speed-dreams.net/public/1a40e1dd0dde9e93b8e5ae3814cfbb70")
sha512sums=('SKIP')
options=('!strip')
package() {
cd $pkgdir
tar xf $srcdir/data.tar.gz
#echo "Speed Dreams wants /usr/lib/librhash.so.0, which doesn't seem to exist when rhash is installed on Arch."
#if [ ! -f /usr/lib/librhash.so.0 ]; then
echo "Symlinking /usr/lib/librhash.so /usr/lib/librhash.so.0"
ln -sfv /usr/lib/librhash.so $pkgdir/usr/lib/librhash.so.0
#else
# echo "It seems like you already have it though! "
#fi
ln -s /usr/lib/x86_64-linux-gnu/libsolid.so $pkgdir/usr/lib/
ln -s /usr/lib/x86_64-linux-gnu/libbroad.so $pkgdir/usr/lib/
ln -s /usr/lib/x86_64-linux-gnu/libmoto.so $pkgdir/usr/lib
}
|