blob: 94fb51cb28093d1510efd3a215551d25e01624d7 (
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
|
# Maintainer: Svitozar Cherepii <razotivs@gmail.com>
pkgname=rvgl-bin
pkgver=20.0210
gamefilever=18.0328
pkgrel=2
pkgdesc="Rewrite of Re-Volt, popular 3D RC car racing game from 1999."
url='https://rvgl.re-volt.io'
arch=('x86_64')
license=('custom')
depends=('sdl2_image' 'openal' 'enet' 'libunistring')
optdepends=('rvgl-dcpack: dreamcast cars, rooftops track, box layout'
'rvgl-soundtrack: community-made soundtrack'
'rvgl-soundtrack-orig: dreamcast version original soundtrack'
'libsndfile: for uncompressed audio support'
'libvorbis: for OGG Vorbis support'
'flac: for FLAC support'
'mpg123: for MPEG support')
source=("game-files-$gamefilever.zip::https://distribute.re-volt.io/packs/game_files.zip"
"rvgl-$pkgver.7z::https://rvgl.re-volt.io/downloads/rvgl_${pkgver}a_linux.7z"
"rvgl.desktop")
sha256sums=('e6a6af46b96cfba9d74b0607de6c99a15f316ba7a7008d30197a9ee8b96e7fe3'
'4e0b6275cde74ffb37137b0509c4f8487592556f6fd7ae64e06841c245f9ebc4'
'4313552a067486339319e6e4b13386040183e196d7b6e26a1fec56a711e4721d')
package() {
find cars edit gallery gfx levels licenses models redbook shaders \
strings wavs gamecontrollerdb.txt game_gauge_replay.rpl -type f -exec \
install -Dm644 {} "$pkgdir/opt/rvgl/{}" \;
find profiles replays times -type d -exec \
install -dm777 "$pkgdir/opt/rvgl/{}" \;
for iconsize in 16x16 24x24 32x32 48x48 256x256
do
install -Dm644 "icons/$iconsize/apps/rvgl.png" \
"$pkgdir/usr/share/icons/hicolor/$iconsize/apps/rvgl.png"
done
install -Dm755 "rvgl.64" "$pkgdir/opt/rvgl/rvgl"
install -Dm644 "rvgl.desktop" "$pkgdir/usr/share/applications/rvgl.desktop"
}
|