blob: fbef9e9b7a4b4bbcad242bde6f4ca2284d63e6ef (
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
55
|
# Maintainer: John-Michael Mulesa <jmulesa [at] gmail.com>
pkgname=wreckfest-wine-steam
_pkgname=wreckfest
pkgver=1.27
pkgrel=1
_steamid=228380
arch=('i686' 'x86_64')
makedepends=('steamcmd' 'icoutils')
depends=('wine' 'winetricks')
source=("${_pkgname}.sh" "${_pkgname}.desktop"
"Goldberg_Lan_Steam_Emu_master--a24a9c26.zip::https://gitlab.com/Mr_Goldberg/goldberg_emulator/-/jobs/1590301114/artifacts/download")
pkgdesc="Wreckfest using WINE with data via Steam"
license=('custom')
install=wreckfest.install
url='https://store.steampowered.com/app/228380/Wreckfest/'
sha256sums=('18c0153c64618b01106732bd6b3fa511c1f99a1ca1a2eb58f83c5cc281d0b7e5'
'b794e5f02c2346e977cb5a5c5ecd8963daf12d10d7c54a84676e20ad199b7941'
'3bfe422a3daf85a02fe6458e4351a4f40f29f513ec8df2c838c7e197844e51cb')
prepare() {
mkdir -p $srcdir/${_pkgname}
# Use steamcmd to get data.
printf "Enter your Steam username:"
read steam_username
steamcmd +@sSteamCmdForcePlatformType windows +@ShutdownOnFailedCommand 1 +force_install_dir $srcdir/${_pkgname} +login $steam_username "+app_update ${_steamid} validate" +quit
wrestool -x -t -14 -o . ${_pkgname}/Wreckfest.exe
icotool -x -o . *.ico
}
package() {
mkdir -p $pkgdir/opt/${_pkgname}
# Move required files to pkgdir
cp -r $srcdir/${_pkgname}/* $pkgdir/opt/${_pkgname}/
rm -rf $pkgdir/opt/${_pkgname}/steamapps
rm $pkgdir/opt/${_pkgname}/*.vdf
$srcdir/linux/tools/find_interfaces.sh $pkgdir/opt/${_pkgname}/steam_api64.dll > $pkgdir/opt/${_pkgname}/steam_interfaces.txt || true
cp $srcdir/steam_api64.dll $pkgdir/opt/${_pkgname}/
cp $srcdir/steam_api.dll $pkgdir/opt/${_pkgname}/
echo "${_steamid}" > $pkgdir/opt/${_pkgname}/steam_appid.txt
# Install desktop file.
install -D -m 644 $srcdir/${_pkgname}.desktop \
$pkgdir/usr/share/applications/${_pkgname}.desktop
# Install icon file.
install -D -m 644 $srcdir/Wreckfest.exe_*_256x256x32.png \
$pkgdir/usr/share/pixmaps/${_pkgname}.png
# Install bash startup script.
install -D -m 755 $srcdir/${_pkgname}.sh \
$pkgdir/usr/bin/${_pkgname}
}
|